@colijnit/corecomponents_v12 12.2.24 → 12.2.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.browserslistrc +17 -0
- package/.editorconfig +16 -0
- package/.idea/CoreComponents_v12.iml +12 -0
- package/.idea/misc.xml +9 -0
- package/.idea/modules.xml +8 -0
- package/.idea/vcs.xml +6 -0
- package/CoreComponents_v12.iml +12 -0
- package/README.md +12 -9
- package/angular.json +149 -0
- package/dist/corecomponentstest/favicon.ico +0 -0
- package/dist/corecomponentstest/index.html +13 -0
- package/dist/corecomponentstest/main.js +24187 -0
- package/dist/corecomponentstest/main.js.map +1 -0
- package/dist/corecomponentstest/polyfills.js +2891 -0
- package/dist/corecomponentstest/polyfills.js.map +1 -0
- package/dist/corecomponentstest/runtime.js +161 -0
- package/dist/corecomponentstest/runtime.js.map +1 -0
- package/dist/corecomponentstest/styles.css +2926 -0
- package/dist/corecomponentstest/styles.css.map +1 -0
- package/dist/corecomponentstest/vendor.js +118790 -0
- package/dist/corecomponentstest/vendor.js.map +1 -0
- package/karma.conf.js +44 -0
- package/move-assets.js +14 -0
- package/package.json +43 -22
- package/projects/corecomponents/README.md +24 -0
- package/projects/corecomponents/karma.conf.js +44 -0
- package/projects/corecomponents/ng-package.json +10 -0
- package/projects/corecomponents/package-lock.json +13 -0
- package/projects/corecomponents/package.json +19 -0
- package/projects/corecomponents/src/lib/components/article-tile/article-tile.component.ts +95 -0
- package/projects/corecomponents/src/lib/components/article-tile/article-tile.module.ts +34 -0
- package/projects/corecomponents/src/lib/components/base/base-input.component.ts +988 -0
- package/projects/corecomponents/src/lib/components/base/base.module.ts +22 -0
- package/projects/corecomponents/src/lib/components/base/commit-buttons/commit-buttons.component.ts +120 -0
- package/projects/corecomponents/src/lib/components/base/commit-buttons/commit-buttons.module.ts +19 -0
- package/projects/corecomponents/src/lib/components/base/dialog-base.component.ts +8 -0
- package/projects/corecomponents/src/lib/components/base-input-date-picker/base-input-date-picker.directive.ts +32 -0
- package/projects/corecomponents/src/lib/components/base-input-time/base-input-time-directive.ts +31 -0
- package/projects/corecomponents/src/lib/components/button/button.component.ts +117 -0
- package/projects/corecomponents/src/lib/components/button/button.module.ts +18 -0
- package/projects/corecomponents/src/lib/components/calendar/calendar-template.component.ts +392 -0
- package/projects/corecomponents/src/lib/components/calendar/calendar.component.ts +54 -0
- package/projects/corecomponents/src/lib/components/calendar/calendar.module.ts +26 -0
- package/projects/corecomponents/src/lib/components/card/card.component.ts +94 -0
- package/projects/corecomponents/src/lib/components/card/card.module.ts +34 -0
- package/projects/corecomponents/src/lib/components/carousel/carousel.component.ts +128 -0
- package/projects/corecomponents/src/lib/components/carousel/carousel.module.ts +28 -0
- package/projects/corecomponents/src/lib/components/carousel-3d/carousel-3d.component.ts +392 -0
- package/projects/corecomponents/src/lib/components/carousel-3d/carousel-3d.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/carousel-3d/carouselItem.ts +77 -0
- package/projects/corecomponents/src/lib/components/checkmark-overlay/checkmark-overlay.component.ts +99 -0
- package/projects/corecomponents/src/lib/components/checkmark-overlay/checkmark-overlay.module.ts +18 -0
- package/projects/corecomponents/src/lib/components/co-dialog/animation.ts +2 -0
- package/projects/corecomponents/src/lib/components/co-dialog/co-dialog.component.ts +130 -0
- package/projects/corecomponents/src/lib/components/co-dialog/co-dialog.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/co-dialog-wizard/co-dialog-wizard.component.ts +50 -0
- package/projects/corecomponents/src/lib/components/co-dialog-wizard/co-dialog-wizard.module.ts +15 -0
- package/projects/corecomponents/src/lib/components/collapsible/collapsible.component.ts +114 -0
- package/projects/corecomponents/src/lib/components/collapsible/collapsible.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/color-picker/color-picker.component.ts +40 -0
- package/projects/corecomponents/src/lib/components/color-picker/color-picker.module.ts +19 -0
- package/projects/corecomponents/src/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.ts +86 -0
- package/projects/corecomponents/src/lib/components/core-dialog/core-dialog.module.ts +37 -0
- package/projects/corecomponents/src/lib/components/core-dialog/core-dialog.service.ts +61 -0
- package/projects/corecomponents/src/lib/components/core-dialog/core-dynamic-component.service.ts +101 -0
- package/projects/corecomponents/src/lib/components/double-calendar/double-calendar.component.ts +102 -0
- package/projects/corecomponents/src/lib/components/double-calendar/double-calendar.module.ts +23 -0
- package/projects/corecomponents/src/lib/components/filter-item/filter-item-viewmodel.ts +20 -0
- package/projects/corecomponents/src/lib/components/filter-item/filter-item.component.ts +715 -0
- package/projects/corecomponents/src/lib/components/filter-item/filter-item.module.ts +42 -0
- package/projects/corecomponents/src/lib/components/filter-item/filter-viewmodel.ts +11 -0
- package/projects/corecomponents/src/lib/components/form/form.component.ts +211 -0
- package/projects/corecomponents/src/lib/components/form/form.module.ts +22 -0
- package/projects/corecomponents/src/lib/components/grid-toolbar/grid-toolbar.component.ts +62 -0
- package/projects/corecomponents/src/lib/components/grid-toolbar/grid-toolbar.module.ts +21 -0
- package/projects/corecomponents/src/lib/components/grid-toolbar-button/grid-toolbar-button.component.ts +28 -0
- package/projects/corecomponents/src/lib/components/grid-toolbar-button/grid-toolbar-button.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/icon/icon-cache.service.ts +57 -0
- package/projects/corecomponents/src/lib/components/icon/icon.component.ts +54 -0
- package/projects/corecomponents/src/lib/components/icon/icon.module.ts +24 -0
- package/projects/corecomponents/src/lib/components/icon-collapse-handle/icon-collapse-handle.component.ts +75 -0
- package/projects/corecomponents/src/lib/components/icon-collapse-handle/icon-collapse-handle.module.ts +21 -0
- package/projects/corecomponents/src/lib/components/image/image.component.ts +51 -0
- package/projects/corecomponents/src/lib/components/image/image.module.ts +12 -0
- package/projects/corecomponents/src/lib/components/input-checkbox/input-checkbox.component.ts +85 -0
- package/projects/corecomponents/src/lib/components/input-checkbox/input-checkbox.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/input-date-picker/input-date-picker.component.ts +103 -0
- package/projects/corecomponents/src/lib/components/input-date-picker/input-date-picker.module.ts +24 -0
- package/projects/corecomponents/src/lib/components/input-date-range-picker/input-date-range-picker.component.ts +155 -0
- package/projects/corecomponents/src/lib/components/input-date-range-picker/input-date-range-picker.module.ts +25 -0
- package/projects/corecomponents/src/lib/components/input-number-picker/input-number-picker.component.ts +378 -0
- package/projects/corecomponents/src/lib/components/input-number-picker/input-number-picker.module.ts +20 -0
- package/projects/corecomponents/src/lib/components/input-radio-button/input-radio-button.component.ts +86 -0
- package/projects/corecomponents/src/lib/components/input-radio-button/input-radio-button.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/input-scanner/bar-code-scanner.ts +25 -0
- package/projects/corecomponents/src/lib/components/input-scanner/input-scanner.component.ts +89 -0
- package/projects/corecomponents/src/lib/components/input-scanner/input-scanner.module.ts +19 -0
- package/projects/corecomponents/src/lib/components/input-scanner/scanner.service.ts +28 -0
- package/projects/corecomponents/src/lib/components/input-search/input-search.component.ts +85 -0
- package/projects/corecomponents/src/lib/components/input-search/input-search.module.ts +20 -0
- package/projects/corecomponents/src/lib/components/input-text/input-text.component.ts +294 -0
- package/projects/corecomponents/src/lib/components/input-text/input-text.module.ts +31 -0
- package/projects/corecomponents/src/lib/components/input-textarea/input-textarea.component.ts +81 -0
- package/projects/corecomponents/src/lib/components/input-textarea/input-textarea.module.ts +25 -0
- package/projects/corecomponents/src/lib/components/input-time/input-time.component.ts +72 -0
- package/projects/corecomponents/src/lib/components/input-time/input-time.module.ts +22 -0
- package/projects/corecomponents/src/lib/components/level-indicator/level-indicator-level.enum.ts +5 -0
- package/projects/corecomponents/src/lib/components/level-indicator/level-indicator.component.ts +42 -0
- package/projects/corecomponents/src/lib/components/level-indicator/level-indicator.module.ts +13 -0
- package/projects/corecomponents/src/lib/components/list-of-values/list-of-values-multiselect-popup.component.ts +132 -0
- package/projects/corecomponents/src/lib/components/list-of-values/list-of-values-popup.component.ts +281 -0
- package/projects/corecomponents/src/lib/components/list-of-values/list-of-values.component.ts +257 -0
- package/projects/corecomponents/src/lib/components/list-of-values/list-of-values.module.ts +35 -0
- package/projects/corecomponents/src/lib/components/loader/loader.component.ts +82 -0
- package/projects/corecomponents/src/lib/components/loader/loader.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/pagination/paginate.pipe.ts +116 -0
- package/projects/corecomponents/src/lib/components/pagination/pagination-instance.ts +18 -0
- package/projects/corecomponents/src/lib/components/pagination/pagination.component.ts +160 -0
- package/projects/corecomponents/src/lib/components/pagination/pagination.module.ts +26 -0
- package/projects/corecomponents/src/lib/components/pagination/pagination.service.ts +99 -0
- package/projects/corecomponents/src/lib/components/pagination-bar/pagination-bar.component.ts +178 -0
- package/projects/corecomponents/src/lib/components/pagination-bar/pagination-bar.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/popup/const/popup-window-token.ts +4 -0
- package/projects/corecomponents/src/lib/components/popup/interface/popup-button.ts +14 -0
- package/projects/corecomponents/src/lib/components/popup/interface/popup-close-event.ts +8 -0
- package/projects/corecomponents/src/lib/components/popup/interface/popup-settings.ts +70 -0
- package/projects/corecomponents/src/lib/components/popup/interface/popup.ts +17 -0
- package/projects/corecomponents/src/lib/components/popup/model/popup-button-globals.ts +11 -0
- package/projects/corecomponents/src/lib/components/popup/model/popup-window.ts +51 -0
- package/projects/corecomponents/src/lib/components/popup/popup-buttons.component.ts +61 -0
- package/projects/corecomponents/src/lib/components/popup/popup-message-display.component.ts +49 -0
- package/projects/corecomponents/src/lib/components/popup/popup-window-shell.component.ts +222 -0
- package/projects/corecomponents/src/lib/components/popup/popup.module.ts +48 -0
- package/projects/corecomponents/src/lib/components/popup/service/popup-shower.service.ts +98 -0
- package/projects/corecomponents/src/lib/components/popup/service/prompt.service.ts +127 -0
- package/projects/corecomponents/src/lib/components/popup/text-input-popup.component.ts +36 -0
- package/projects/corecomponents/src/lib/components/responsive-text/responsive-text.component.ts +24 -0
- package/projects/corecomponents/src/lib/components/responsive-text/responsive-text.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/simple-grid/base-simple-grid.component.ts +194 -0
- package/projects/corecomponents/src/lib/components/simple-grid/simple-grid-cell.component.ts +192 -0
- package/projects/corecomponents/src/lib/components/simple-grid/simple-grid-column.directive.ts +143 -0
- package/projects/corecomponents/src/lib/components/simple-grid/simple-grid.component.ts +489 -0
- package/projects/corecomponents/src/lib/components/simple-grid/simple-grid.module.ts +38 -0
- package/projects/corecomponents/src/lib/components/tile/tile.component.ts +71 -0
- package/projects/corecomponents/src/lib/components/tile/tile.module.ts +21 -0
- package/projects/corecomponents/src/lib/components/tile-select/tile-select.component.ts +36 -0
- package/projects/corecomponents/src/lib/components/tile-select/tile-select.module.ts +19 -0
- package/projects/corecomponents/src/lib/components/tooltip/tooltip.component.ts +96 -0
- package/projects/corecomponents/src/lib/components/tooltip/tooltip.module.ts +17 -0
- package/projects/corecomponents/src/lib/components/validation-error/validation-error.component.ts +45 -0
- package/projects/corecomponents/src/lib/components/validation-error/validation-error.module.ts +24 -0
- package/projects/corecomponents/src/lib/components/view-mode-buttons/content-view-mode.enum.ts +9 -0
- package/projects/corecomponents/src/lib/components/view-mode-buttons/view-mode-buttons.component.ts +63 -0
- package/projects/corecomponents/src/lib/components/view-mode-buttons/view-mode-buttons.module.ts +19 -0
- package/projects/corecomponents/src/lib/core/abstract/collection-based-component.ts +488 -0
- package/projects/corecomponents/src/lib/core/config/device-environment.ts +26 -0
- package/projects/corecomponents/src/lib/core/constant/default-upper-bound-for-range-components.ts +4 -0
- package/projects/corecomponents/src/lib/core/constant/java-max-int.ts +1 -0
- package/projects/corecomponents/src/lib/core/constant/number-inputs-key-down-white-list.ts +46 -0
- package/projects/corecomponents/src/lib/core/decorator/input-boolean.decorator.ts +35 -0
- package/projects/corecomponents/src/lib/core/enum/co-direction.ts +7 -0
- package/projects/corecomponents/src/lib/core/enum/co-document-image-display-kind.enum.ts +5 -0
- package/projects/corecomponents/src/lib/core/enum/co-document-type.enum.ts +9 -0
- package/projects/corecomponents/src/lib/core/enum/co-orientation.ts +18 -0
- package/projects/corecomponents/src/lib/core/enum/collection-based-component-input-driver-prop.enum.ts +10 -0
- package/projects/corecomponents/src/lib/core/enum/color-sequence-name.enum.ts +5 -0
- package/projects/corecomponents/src/lib/core/enum/core-components-icon.enum.ts +299 -0
- package/projects/corecomponents/src/lib/core/enum/file-type-internal.enum.ts +15 -0
- package/projects/corecomponents/src/lib/core/enum/file-type.enum.ts +9 -0
- package/projects/corecomponents/src/lib/core/enum/filterItem-mode.enum.ts +57 -0
- package/projects/corecomponents/src/lib/core/enum/float-label-type.enum.ts +5 -0
- package/projects/corecomponents/src/lib/core/enum/input-number-picker-show-mode.enum.ts +6 -0
- package/projects/corecomponents/src/lib/core/enum/input-text-type.enum.ts +4 -0
- package/projects/corecomponents/src/lib/core/enum/keyboard-code.enum.ts +72 -0
- package/projects/corecomponents/src/lib/core/enum/keyboard-key.enum.ts +78 -0
- package/projects/corecomponents/src/lib/core/enum/logical-operator-type.enum.ts +5 -0
- package/projects/corecomponents/src/lib/core/enum/object-right-type.enum.ts +5 -0
- package/projects/corecomponents/src/lib/core/enum/popup-button-type.enum.ts +10 -0
- package/projects/corecomponents/src/lib/core/enum/popup-type.enum.ts +9 -0
- package/projects/corecomponents/src/lib/core/enum/schedule-view.enum.ts +14 -0
- package/projects/corecomponents/src/lib/core/enum/search-data-type.ts +4 -0
- package/projects/corecomponents/src/lib/core/enum/search-property-state.ts +5 -0
- package/projects/corecomponents/src/lib/core/enum/sort-data-type.ts +6 -0
- package/projects/corecomponents/src/lib/core/enum/sort-direction.ts +9 -0
- package/projects/corecomponents/src/lib/core/enum/table-name.enum.ts +79 -0
- package/projects/corecomponents/src/lib/core/enum/value-comparison-type.ts +11 -0
- package/projects/corecomponents/src/lib/core/function/any-nill.function.ts +6 -0
- package/projects/corecomponents/src/lib/core/function/is-nill.function.ts +4 -0
- package/projects/corecomponents/src/lib/core/function/none-nill.function.ts +16 -0
- package/projects/corecomponents/src/lib/core/function/not-nill.function.ts +4 -0
- package/projects/corecomponents/src/lib/core/interface/search-property.ts +15 -0
- package/projects/corecomponents/src/lib/core/interface/sort-property.ts +16 -0
- package/projects/corecomponents/src/lib/core/model/bounds-constrained-number-value.ts +222 -0
- package/projects/corecomponents/src/lib/core/model/check-precision-and-scale-result.ts +5 -0
- package/projects/corecomponents/src/lib/core/model/check-within-stepped-bounds-result.ts +8 -0
- package/projects/corecomponents/src/lib/core/model/co-document-right.bo.ts +9 -0
- package/projects/corecomponents/src/lib/core/model/co-document.bo.ts +193 -0
- package/projects/corecomponents/src/lib/core/model/color-sequence.ts +39 -0
- package/projects/corecomponents/src/lib/core/model/color.ts +29 -0
- package/projects/corecomponents/src/lib/core/model/core-components-icon-svg.ts +299 -0
- package/projects/corecomponents/src/lib/core/model/element-position.ts +14 -0
- package/projects/corecomponents/src/lib/core/model/event/number-prompt-result-event.ts +10 -0
- package/projects/corecomponents/src/lib/core/model/event/string-prompt-result-event.ts +10 -0
- package/projects/corecomponents/src/lib/core/model/numerical-range.ts +19 -0
- package/projects/corecomponents/src/lib/core/service/form-input-user-change-listener.service.ts +31 -0
- package/projects/corecomponents/src/lib/core/service/form-master.service.ts +119 -0
- package/projects/corecomponents/src/lib/core/service/ng-zone-wrapper.service.ts +15 -0
- package/projects/corecomponents/src/lib/core/utils/array-utils.spec.ts +588 -0
- package/projects/corecomponents/src/lib/core/utils/array-utils.ts +301 -0
- package/projects/corecomponents/src/lib/core/utils/browser-utils.ts +123 -0
- package/projects/corecomponents/src/lib/core/utils/business-object-utils.ts +42 -0
- package/projects/corecomponents/src/lib/core/utils/css-utils.ts +276 -0
- package/projects/corecomponents/src/lib/core/utils/direction-enum-utils.ts +15 -0
- package/projects/corecomponents/src/lib/core/utils/element-ref.utils.ts +12 -0
- package/projects/corecomponents/src/lib/core/utils/event-utils.ts +61 -0
- package/projects/corecomponents/src/lib/core/utils/file-utils.ts +291 -0
- package/projects/corecomponents/src/lib/core/utils/number-utils.spec.ts +657 -0
- package/projects/corecomponents/src/lib/core/utils/number-utils.ts +350 -0
- package/projects/corecomponents/src/lib/core/utils/object-utils.ts +205 -0
- package/projects/corecomponents/src/lib/core/utils/parameter-value-conversion-utils.ts +116 -0
- package/projects/corecomponents/src/lib/core/utils/search-utils.ts +121 -0
- package/projects/corecomponents/src/lib/core/utils/sort-utils.ts +108 -0
- package/projects/corecomponents/src/lib/core/utils/string-utils.ts +100 -0
- package/projects/corecomponents/src/lib/core/validator/email.validator.ts +10 -0
- package/projects/corecomponents/src/lib/core/validator/equal.validator.ts +14 -0
- package/projects/corecomponents/src/lib/core/validator/max-string-length.validator.ts +11 -0
- package/projects/corecomponents/src/lib/core/validator/password.validator.ts +35 -0
- package/projects/corecomponents/src/lib/core/validator/precision-scale.validator.ts +14 -0
- package/projects/corecomponents/src/lib/core/validator/required.validator.ts +9 -0
- package/projects/corecomponents/src/lib/directives/align-with/align-with.directive.ts +158 -0
- package/projects/corecomponents/src/lib/directives/align-with/align-with.module.ts +13 -0
- package/projects/corecomponents/src/lib/directives/clickoutside/click-outside-master.service.ts +64 -0
- package/projects/corecomponents/src/lib/directives/clickoutside/click-outside.directive.ts +72 -0
- package/projects/corecomponents/src/lib/directives/clickoutside/clickoutside.module.ts +17 -0
- package/projects/corecomponents/src/lib/directives/observe-visibility/observe-visibility.directive.ts +55 -0
- package/projects/corecomponents/src/lib/directives/observe-visibility/observe-visibility.module.ts +13 -0
- package/projects/corecomponents/src/lib/directives/overlay/overlay-parent.directive.ts +20 -0
- package/projects/corecomponents/src/lib/directives/overlay/overlay.directive.ts +170 -0
- package/projects/corecomponents/src/lib/directives/overlay/overlay.module.ts +16 -0
- package/projects/corecomponents/src/lib/directives/parsevalue/parse-value.directive.ts +42 -0
- package/projects/corecomponents/src/lib/directives/parsevalue/parse-value.module.ts +13 -0
- package/projects/corecomponents/src/lib/directives/resize/resize-detect.directive.ts +54 -0
- package/projects/corecomponents/src/lib/directives/resize/resize-detect.module.ts +13 -0
- package/projects/corecomponents/src/lib/directives/ripple/ripple-ref.ts +28 -0
- package/projects/corecomponents/src/lib/directives/ripple/ripple-renderer.ts +217 -0
- package/projects/corecomponents/src/lib/directives/ripple/ripple.directive.ts +116 -0
- package/projects/corecomponents/src/lib/directives/ripple/ripple.module.ts +24 -0
- package/projects/corecomponents/src/lib/directives/ripple/scroll-dispatcher.service.ts +129 -0
- package/projects/corecomponents/src/lib/directives/ripple/scrollable.directive.ts +37 -0
- package/projects/corecomponents/src/lib/directives/ripple/viewport-ruler.service.ts +84 -0
- package/projects/corecomponents/src/lib/directives/screen-configuration/screen-configuration.directive.ts +170 -0
- package/projects/corecomponents/src/lib/directives/screen-configuration/screen-configuration.module.ts +16 -0
- package/projects/corecomponents/src/lib/directives/stopclick/stop-click.directive.ts +35 -0
- package/projects/corecomponents/src/lib/directives/stopclick/stop-click.module.ts +14 -0
- package/projects/corecomponents/src/lib/directives/template-wrapper/template-wrapper.directive.ts +71 -0
- package/projects/corecomponents/src/lib/directives/template-wrapper/template-wrapper.module.ts +13 -0
- package/projects/corecomponents/src/lib/directives/tooltip/tooltip-directive.module.ts +17 -0
- package/projects/corecomponents/src/lib/directives/tooltip/tooltip.directive.ts +94 -0
- package/projects/corecomponents/src/lib/interfaces/dialog-response.interface.ts +7 -0
- package/projects/corecomponents/src/lib/interfaces/lov-options.component.interface.ts +4 -0
- package/projects/corecomponents/src/lib/interfaces/scanner-input.interface.ts +3 -0
- package/projects/corecomponents/src/lib/interfaces/screen-config-adapter-component-interface-name.ts +6 -0
- package/projects/corecomponents/src/lib/interfaces/screen-config-adapter.component.interface.ts +10 -0
- package/projects/corecomponents/src/lib/model/data-item.ts +9 -0
- package/projects/corecomponents/src/lib/model/enum/app-button-type.enum.ts +9 -0
- package/projects/corecomponents/src/lib/model/enum/app-popup-type.enum.ts +6 -0
- package/projects/corecomponents/src/lib/model/enum/currency-code.enum.ts +7 -0
- package/projects/corecomponents/src/lib/model/enum/language-code.enum.ts +8 -0
- package/projects/corecomponents/src/lib/model/map/currencies.map.ts +6 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop-container.component.ts +115 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop-container.css +34 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop-manager.service.ts +414 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop.module.ts +20 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/draggable.directive.ts +70 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/model/co-drag-event.ts +5 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/model/co-drop-event.ts +9 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/model/drag-drop-container-element.ts +7 -0
- package/projects/corecomponents/src/lib/modules/drag-drop/model/drag-drop-container.ts +9 -0
- package/projects/corecomponents/src/lib/modules/media-monitor/flex-layout-breakpoint.enum.ts +5 -0
- package/projects/corecomponents/src/lib/modules/media-monitor/media-monitor.module.ts +14 -0
- package/projects/corecomponents/src/lib/modules/media-monitor/media-monitor.service.ts +36 -0
- package/projects/corecomponents/src/lib/modules/pagination/paginate.pipe.ts +116 -0
- package/projects/corecomponents/src/lib/modules/pagination/pagination-instance.ts +18 -0
- package/projects/corecomponents/src/lib/modules/pagination/pagination.component.ts +229 -0
- package/projects/corecomponents/src/lib/modules/pagination/pagination.module.ts +25 -0
- package/projects/corecomponents/src/lib/modules/pagination/pagination.service.ts +98 -0
- package/projects/corecomponents/src/lib/pipes/append.pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/append.pipe.ts +17 -0
- package/projects/corecomponents/src/lib/pipes/co-currency-pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/co-currency.pipe.ts +45 -0
- package/projects/corecomponents/src/lib/pipes/emun-keys.pipe.ts +20 -0
- package/projects/corecomponents/src/lib/pipes/enum-keys-pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/file-type-image-pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/file-type-image.pipe.ts +45 -0
- package/projects/corecomponents/src/lib/pipes/filter.pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/filter.pipe.ts +14 -0
- package/projects/corecomponents/src/lib/pipes/master-pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/master.pipe.ts +71 -0
- package/projects/corecomponents/src/lib/pipes/prepend.pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/prepend.pipe.ts +17 -0
- package/projects/corecomponents/src/lib/pipes/price-display-pipe.module.ts +14 -0
- package/projects/corecomponents/src/lib/pipes/price-display.pipe.ts +20 -0
- package/projects/corecomponents/src/lib/pipes/safe-style.pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/safe-style.pipe.ts +14 -0
- package/projects/corecomponents/src/lib/pipes/ucfirst-pipe.module.ts +13 -0
- package/projects/corecomponents/src/lib/pipes/ucfirst.pipe.ts +14 -0
- package/projects/corecomponents/src/lib/service/base-module-screen-config.service.ts +241 -0
- package/projects/corecomponents/src/lib/service/base-module.service.ts +50 -0
- package/projects/corecomponents/src/lib/service/color-sequence.service.ts +20 -0
- package/projects/corecomponents/src/lib/service/overlay.service.ts +81 -0
- package/projects/corecomponents/src/lib/translation/core-components-translation.module.ts +27 -0
- package/projects/corecomponents/src/lib/translation/core-components-translation.service.ts +15 -0
- package/projects/corecomponents/src/lib/translation/core-dictionary.service.ts +27 -0
- package/projects/corecomponents/src/lib/translation/core-localize.pipe.ts +21 -0
- package/projects/corecomponents/src/public-api.ts +137 -0
- package/projects/corecomponents/src/res/icons/Barcode.svg +1 -0
- package/projects/corecomponents/src/res/icons/CashRegister.svg +1 -0
- package/projects/corecomponents/src/res/icons/CirclePlusSkinny.svg +1 -0
- package/projects/corecomponents/src/res/icons/CrossSkinny.svg +1 -0
- package/projects/corecomponents/src/res/icons/FolderArrow.svg +1 -0
- package/projects/corecomponents/src/res/icons/Home.svg +1 -0
- package/projects/corecomponents/src/res/icons/POS.svg +1 -0
- package/projects/corecomponents/src/res/icons/Shop.svg +1 -0
- package/projects/corecomponents/src/res/icons/SinglePerson.svg +1 -0
- package/projects/corecomponents/src/res/icons/Star.svg +1 -0
- package/projects/corecomponents/src/res/icons/TrashBin.svg +1 -0
- package/projects/corecomponents/src/res/icons/account.svg +1 -0
- package/projects/corecomponents/src/res/icons/account_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/activities.svg +1 -0
- package/projects/corecomponents/src/res/icons/add_to_cart_drop.svg +1 -0
- package/projects/corecomponents/src/res/icons/arrow_down.svg +1 -0
- package/projects/corecomponents/src/res/icons/arrow_fat_left.svg +1 -0
- package/projects/corecomponents/src/res/icons/arrow_fat_right.svg +1 -0
- package/projects/corecomponents/src/res/icons/arrow_left.svg +4 -0
- package/projects/corecomponents/src/res/icons/arrow_left_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/arrow_point_down.svg +6 -0
- package/projects/corecomponents/src/res/icons/arrow_point_left.svg +8 -0
- package/projects/corecomponents/src/res/icons/arrow_point_right.svg +8 -0
- package/projects/corecomponents/src/res/icons/arrow_point_up.svg +8 -0
- package/projects/corecomponents/src/res/icons/arrow_right_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/arrow_scroll_down.svg +6 -0
- package/projects/corecomponents/src/res/icons/arrow_scroll_left.svg +22 -0
- package/projects/corecomponents/src/res/icons/arrow_scroll_right.svg +22 -0
- package/projects/corecomponents/src/res/icons/arrow_scroll_up.svg +6 -0
- package/projects/corecomponents/src/res/icons/arrow_up.svg +3 -0
- package/projects/corecomponents/src/res/icons/article.svg +1 -0
- package/projects/corecomponents/src/res/icons/article_with_fold.svg +1 -0
- package/projects/corecomponents/src/res/icons/asterisk_small.svg +1 -0
- package/projects/corecomponents/src/res/icons/attachments.svg +1 -0
- package/projects/corecomponents/src/res/icons/back_to_top.svg +1 -0
- package/projects/corecomponents/src/res/icons/big_mac.svg +6 -0
- package/projects/corecomponents/src/res/icons/boxes.svg +1 -0
- package/projects/corecomponents/src/res/icons/brush.svg +1 -0
- package/projects/corecomponents/src/res/icons/brush_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/building_columns.svg +1 -0
- package/projects/corecomponents/src/res/icons/businessrules.svg +1 -0
- package/projects/corecomponents/src/res/icons/calendar.svg +1 -0
- package/projects/corecomponents/src/res/icons/calendar_day.svg +37 -0
- package/projects/corecomponents/src/res/icons/calendar_day_regular.svg +1 -0
- package/projects/corecomponents/src/res/icons/calendar_empty.svg +16 -0
- package/projects/corecomponents/src/res/icons/calendar_range.svg +1 -0
- package/projects/corecomponents/src/res/icons/calendar_round_open.svg +16 -0
- package/projects/corecomponents/src/res/icons/camera.svg +1 -0
- package/projects/corecomponents/src/res/icons/cancel.svg +1 -0
- package/projects/corecomponents/src/res/icons/cancel_round_filled.svg +1 -0
- package/projects/corecomponents/src/res/icons/cancel_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/cart.svg +1 -0
- package/projects/corecomponents/src/res/icons/cart_open.svg +8 -0
- package/projects/corecomponents/src/res/icons/case_manager.svg +1 -0
- package/projects/corecomponents/src/res/icons/cash_register_simple.svg +1 -0
- package/projects/corecomponents/src/res/icons/change_location.svg +1 -0
- package/projects/corecomponents/src/res/icons/check.svg +1 -0
- package/projects/corecomponents/src/res/icons/check_duotone.svg +1 -0
- package/projects/corecomponents/src/res/icons/check_round.svg +1 -0
- package/projects/corecomponents/src/res/icons/check_round_open.svg +10 -0
- package/projects/corecomponents/src/res/icons/check_simple.svg +3 -0
- package/projects/corecomponents/src/res/icons/check_thin.svg +1 -0
- package/projects/corecomponents/src/res/icons/chevron_down_regular.svg +1 -0
- package/projects/corecomponents/src/res/icons/chevron_up_regular.svg +1 -0
- package/projects/corecomponents/src/res/icons/client.svg +1 -0
- package/projects/corecomponents/src/res/icons/clock.svg +1 -0
- package/projects/corecomponents/src/res/icons/clockArrow.svg +1 -0
- package/projects/corecomponents/src/res/icons/cogWheelPlus.svg +1 -0
- package/projects/corecomponents/src/res/icons/cogWheels.svg +1 -0
- package/projects/corecomponents/src/res/icons/column_options.svg +18 -0
- package/projects/corecomponents/src/res/icons/company.svg +1 -0
- package/projects/corecomponents/src/res/icons/company_flat.svg +4 -0
- package/projects/corecomponents/src/res/icons/configurable.svg +1 -0
- package/projects/corecomponents/src/res/icons/consultant.svg +1 -0
- package/projects/corecomponents/src/res/icons/copy.svg +1 -0
- package/projects/corecomponents/src/res/icons/crosshair_1.svg +1 -0
- package/projects/corecomponents/src/res/icons/dashboard.svg +1 -0
- package/projects/corecomponents/src/res/icons/delivery_method.svg +32 -0
- package/projects/corecomponents/src/res/icons/delivery_status_uncheck.svg +9 -0
- package/projects/corecomponents/src/res/icons/delivery_truck.svg +1 -0
- package/projects/corecomponents/src/res/icons/detail_record.svg +1 -0
- package/projects/corecomponents/src/res/icons/detail_view.svg +1 -0
- package/projects/corecomponents/src/res/icons/dictionary.svg +1 -0
- package/projects/corecomponents/src/res/icons/documentWrench.svg +1 -0
- package/projects/corecomponents/src/res/icons/documents.svg +1 -0
- package/projects/corecomponents/src/res/icons/dollar.svg +1 -0
- package/projects/corecomponents/src/res/icons/download.svg +1 -0
- package/projects/corecomponents/src/res/icons/dropdown.svg +4 -0
- package/projects/corecomponents/src/res/icons/dropzone.svg +1 -0
- package/projects/corecomponents/src/res/icons/edit_pencil.svg +1 -0
- package/projects/corecomponents/src/res/icons/edit_pencil_circle.svg +1 -0
- package/projects/corecomponents/src/res/icons/edit_pencil_round.svg +11 -0
- package/projects/corecomponents/src/res/icons/edit_pencil_simple.svg +16 -0
- package/projects/corecomponents/src/res/icons/email.svg +1 -0
- package/projects/corecomponents/src/res/icons/email_round_open.svg +6 -0
- package/projects/corecomponents/src/res/icons/employee.svg +1 -0
- package/projects/corecomponents/src/res/icons/employee_two.svg +1 -0
- package/projects/corecomponents/src/res/icons/employer.svg +1 -0
- package/projects/corecomponents/src/res/icons/employment.svg +1 -0
- package/projects/corecomponents/src/res/icons/employment_end.svg +7 -0
- package/projects/corecomponents/src/res/icons/equal.svg +1 -0
- package/projects/corecomponents/src/res/icons/euro.svg +1 -0
- package/projects/corecomponents/src/res/icons/exclamation.svg +1 -0
- package/projects/corecomponents/src/res/icons/exclamation_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/eye_circle.svg +1 -0
- package/projects/corecomponents/src/res/icons/eye_circle_large.svg +1 -0
- package/projects/corecomponents/src/res/icons/eye_round_filled.svg +11 -0
- package/projects/corecomponents/src/res/icons/factory.svg +1 -0
- package/projects/corecomponents/src/res/icons/fasttrack.svg +1 -0
- package/projects/corecomponents/src/res/icons/filter.svg +1 -0
- package/projects/corecomponents/src/res/icons/finish.svg +1 -0
- package/projects/corecomponents/src/res/icons/fixed_option_value_tree.svg +1 -0
- package/projects/corecomponents/src/res/icons/fixed_tree_option_value.svg +1 -0
- package/projects/corecomponents/src/res/icons/floppy_disk_solid.svg +1 -0
- package/projects/corecomponents/src/res/icons/folder_arrow_in.svg +8 -0
- package/projects/corecomponents/src/res/icons/formula.svg +1 -0
- package/projects/corecomponents/src/res/icons/fullscreen.svg +6 -0
- package/projects/corecomponents/src/res/icons/gear_double.svg +21 -0
- package/projects/corecomponents/src/res/icons/global_search.svg +45 -0
- package/projects/corecomponents/src/res/icons/globe.svg +1 -0
- package/projects/corecomponents/src/res/icons/greater_than.svg +1 -0
- package/projects/corecomponents/src/res/icons/groupby.svg +1 -0
- package/projects/corecomponents/src/res/icons/hamburger.svg +1 -0
- package/projects/corecomponents/src/res/icons/hand_pointer.svg +1 -0
- package/projects/corecomponents/src/res/icons/hbarchart.svg +6 -0
- package/projects/corecomponents/src/res/icons/home_circle.svg +9 -0
- package/projects/corecomponents/src/res/icons/home_open.svg +7 -0
- package/projects/corecomponents/src/res/icons/home_round_open.svg +11 -0
- package/projects/corecomponents/src/res/icons/hourglass.svg +1 -0
- package/projects/corecomponents/src/res/icons/icon_3d.svg +1 -0
- package/projects/corecomponents/src/res/icons/id.svg +1 -0
- package/projects/corecomponents/src/res/icons/image.svg +1 -0
- package/projects/corecomponents/src/res/icons/incoming_storage.svg +1 -0
- package/projects/corecomponents/src/res/icons/information.svg +1 -0
- package/projects/corecomponents/src/res/icons/information_round_open.svg +6 -0
- package/projects/corecomponents/src/res/icons/input_multiplechoice.svg +1 -0
- package/projects/corecomponents/src/res/icons/input_text.svg +1 -0
- package/projects/corecomponents/src/res/icons/input_textarea.svg +1 -0
- package/projects/corecomponents/src/res/icons/inventory.svg +1 -0
- package/projects/corecomponents/src/res/icons/invoice.svg +20 -0
- package/projects/corecomponents/src/res/icons/ione_logo.svg +1 -0
- package/projects/corecomponents/src/res/icons/ione_logo_fat.svg +1 -0
- package/projects/corecomponents/src/res/icons/ione_status_next.svg +43 -0
- package/projects/corecomponents/src/res/icons/ione_workflow.svg +62 -0
- package/projects/corecomponents/src/res/icons/keyboard.svg +1 -0
- package/projects/corecomponents/src/res/icons/keychain.svg +1 -0
- package/projects/corecomponents/src/res/icons/label.svg +5 -0
- package/projects/corecomponents/src/res/icons/label_round_open.svg +6 -0
- package/projects/corecomponents/src/res/icons/landmark_flag.svg +1 -0
- package/projects/corecomponents/src/res/icons/library.svg +21 -0
- package/projects/corecomponents/src/res/icons/linechart.svg +1 -0
- package/projects/corecomponents/src/res/icons/link_circle.svg +1 -0
- package/projects/corecomponents/src/res/icons/linked_products.svg +1 -0
- package/projects/corecomponents/src/res/icons/list_view.svg +8 -0
- package/projects/corecomponents/src/res/icons/location.svg +1 -0
- package/projects/corecomponents/src/res/icons/lock.svg +1 -0
- package/projects/corecomponents/src/res/icons/lock_round_open.svg +8 -0
- package/projects/corecomponents/src/res/icons/logo.svg +1 -0
- package/projects/corecomponents/src/res/icons/logout.svg +1 -0
- package/projects/corecomponents/src/res/icons/magic_wand.svg +1 -0
- package/projects/corecomponents/src/res/icons/magnifier.svg +5 -0
- package/projects/corecomponents/src/res/icons/manager.svg +12 -0
- package/projects/corecomponents/src/res/icons/mask.svg +1 -0
- package/projects/corecomponents/src/res/icons/master_detail.svg +1 -0
- package/projects/corecomponents/src/res/icons/material_circle_large.svg +1 -0
- package/projects/corecomponents/src/res/icons/medal_bronze.svg +23 -0
- package/projects/corecomponents/src/res/icons/medal_gold.svg +23 -0
- package/projects/corecomponents/src/res/icons/medal_silver.svg +23 -0
- package/projects/corecomponents/src/res/icons/medical_officer.svg +14 -0
- package/projects/corecomponents/src/res/icons/microphone.svg +1 -0
- package/projects/corecomponents/src/res/icons/minus_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/minus_simple.svg +1 -0
- package/projects/corecomponents/src/res/icons/mobile.svg +1 -0
- package/projects/corecomponents/src/res/icons/multi_select_check.svg +10 -0
- package/projects/corecomponents/src/res/icons/new_task.svg +1 -0
- package/projects/corecomponents/src/res/icons/not_equal.svg +4 -0
- package/projects/corecomponents/src/res/icons/note.svg +1 -0
- package/projects/corecomponents/src/res/icons/note_bordered.svg +1 -0
- package/projects/corecomponents/src/res/icons/notification.svg +1 -0
- package/projects/corecomponents/src/res/icons/option.svg +1 -0
- package/projects/corecomponents/src/res/icons/optionset.svg +1 -0
- package/projects/corecomponents/src/res/icons/order.svg +1 -0
- package/projects/corecomponents/src/res/icons/orderpicking.svg +1 -0
- package/projects/corecomponents/src/res/icons/outgoing_storage.svg +1 -0
- package/projects/corecomponents/src/res/icons/over_booking.svg +1 -0
- package/projects/corecomponents/src/res/icons/pause_circle.svg +12 -0
- package/projects/corecomponents/src/res/icons/pen_to_square_solid.svg +1 -0
- package/projects/corecomponents/src/res/icons/pencil_round_open.svg +10 -0
- package/projects/corecomponents/src/res/icons/phone.svg +1 -0
- package/projects/corecomponents/src/res/icons/phone_round_open.svg +10 -0
- package/projects/corecomponents/src/res/icons/piechart.svg +24 -0
- package/projects/corecomponents/src/res/icons/pin.svg +9 -0
- package/projects/corecomponents/src/res/icons/pin_round_open.svg +11 -0
- package/projects/corecomponents/src/res/icons/play_circle.svg +1 -0
- package/projects/corecomponents/src/res/icons/plus_round.svg +9 -0
- package/projects/corecomponents/src/res/icons/plus_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/plus_simple.svg +1 -0
- package/projects/corecomponents/src/res/icons/plus_skinny.svg +8 -0
- package/projects/corecomponents/src/res/icons/plus_solid.svg +1 -0
- package/projects/corecomponents/src/res/icons/plus_stars.svg +1 -0
- package/projects/corecomponents/src/res/icons/pointer.svg +7 -0
- package/projects/corecomponents/src/res/icons/pointer_3d.svg +8 -0
- package/projects/corecomponents/src/res/icons/pointer_filled.svg +6 -0
- package/projects/corecomponents/src/res/icons/positioning.svg +1 -0
- package/projects/corecomponents/src/res/icons/pregnancy.svg +18 -0
- package/projects/corecomponents/src/res/icons/preset.svg +1 -0
- package/projects/corecomponents/src/res/icons/print.svg +1 -0
- package/projects/corecomponents/src/res/icons/product_properties.svg +1 -0
- package/projects/corecomponents/src/res/icons/purchase.svg +15 -0
- package/projects/corecomponents/src/res/icons/qrcode.svg +59 -0
- package/projects/corecomponents/src/res/icons/question.svg +1 -0
- package/projects/corecomponents/src/res/icons/radio_uncheck.svg +1 -0
- package/projects/corecomponents/src/res/icons/range.svg +1 -0
- package/projects/corecomponents/src/res/icons/range_select.svg +1 -0
- package/projects/corecomponents/src/res/icons/rectangles.svg +15 -0
- package/projects/corecomponents/src/res/icons/refresh.svg +1 -0
- package/projects/corecomponents/src/res/icons/relations.svg +20 -0
- package/projects/corecomponents/src/res/icons/remark.svg +1 -0
- package/projects/corecomponents/src/res/icons/remark_round_open.svg +6 -0
- package/projects/corecomponents/src/res/icons/report_in_type.svg +1 -0
- package/projects/corecomponents/src/res/icons/resize.svg +3 -0
- package/projects/corecomponents/src/res/icons/resize_down.svg +1 -0
- package/projects/corecomponents/src/res/icons/resize_up.svg +1 -0
- package/projects/corecomponents/src/res/icons/return_goods.svg +4 -0
- package/projects/corecomponents/src/res/icons/returns.svg +1 -0
- package/projects/corecomponents/src/res/icons/rotate_left_solid.svg +1 -0
- package/projects/corecomponents/src/res/icons/save_disk.svg +15 -0
- package/projects/corecomponents/src/res/icons/save_skinny.svg +3 -0
- package/projects/corecomponents/src/res/icons/scale_balanced.svg +1 -0
- package/projects/corecomponents/src/res/icons/scanner.svg +1 -0
- package/projects/corecomponents/src/res/icons/search_round_open.svg +9 -0
- package/projects/corecomponents/src/res/icons/sections.svg +1 -0
- package/projects/corecomponents/src/res/icons/select_all_round.svg +5 -0
- package/projects/corecomponents/src/res/icons/services.svg +1 -0
- package/projects/corecomponents/src/res/icons/settings.svg +20 -0
- package/projects/corecomponents/src/res/icons/shopping_cart.svg +1 -0
- package/projects/corecomponents/src/res/icons/shopping_cart_nr.svg +1 -0
- package/projects/corecomponents/src/res/icons/shortcut.svg +1 -0
- package/projects/corecomponents/src/res/icons/skills.svg +1 -0
- package/projects/corecomponents/src/res/icons/slide_in.svg +1 -0
- package/projects/corecomponents/src/res/icons/slider_panel.svg +7 -0
- package/projects/corecomponents/src/res/icons/small_tiles.svg +1 -0
- package/projects/corecomponents/src/res/icons/smaller_than.svg +1 -0
- package/projects/corecomponents/src/res/icons/sort_asc.svg +1 -0
- package/projects/corecomponents/src/res/icons/sort_desc.svg +1 -0
- package/projects/corecomponents/src/res/icons/star_round_open.svg +6 -0
- package/projects/corecomponents/src/res/icons/status_active.svg +1 -0
- package/projects/corecomponents/src/res/icons/status_adoption.svg +1 -0
- package/projects/corecomponents/src/res/icons/status_fostercare.svg +1 -0
- package/projects/corecomponents/src/res/icons/status_ill.svg +10 -0
- package/projects/corecomponents/src/res/icons/status_leave.svg +1 -0
- package/projects/corecomponents/src/res/icons/status_pregnancy.svg +10 -0
- package/projects/corecomponents/src/res/icons/stock.svg +1 -0
- package/projects/corecomponents/src/res/icons/stock_management.svg +25 -0
- package/projects/corecomponents/src/res/icons/storage.svg +1 -0
- package/projects/corecomponents/src/res/icons/supervisor.svg +1 -0
- package/projects/corecomponents/src/res/icons/supplier.svg +18 -0
- package/projects/corecomponents/src/res/icons/surgery.svg +35 -0
- package/projects/corecomponents/src/res/icons/tablechart.svg +15 -0
- package/projects/corecomponents/src/res/icons/tag.svg +1 -0
- package/projects/corecomponents/src/res/icons/talk_too_much.svg +7 -0
- package/projects/corecomponents/src/res/icons/target.svg +1 -0
- package/projects/corecomponents/src/res/icons/task.svg +1 -0
- package/projects/corecomponents/src/res/icons/thick_lines.svg +1 -0
- package/projects/corecomponents/src/res/icons/thin_lines.svg +1 -0
- package/projects/corecomponents/src/res/icons/three_sixty_view.svg +1 -0
- package/projects/corecomponents/src/res/icons/thumb_bronze.svg +29 -0
- package/projects/corecomponents/src/res/icons/thumb_gold.svg +29 -0
- package/projects/corecomponents/src/res/icons/thumb_silver.svg +29 -0
- package/projects/corecomponents/src/res/icons/timeline.svg +1 -0
- package/projects/corecomponents/src/res/icons/transaction_detail.svg +19 -0
- package/projects/corecomponents/src/res/icons/transactions.svg +12 -0
- package/projects/corecomponents/src/res/icons/trash_can_solid.svg +1 -0
- package/projects/corecomponents/src/res/icons/triangle_down.svg +1 -0
- package/projects/corecomponents/src/res/icons/triangle_large.svg +5 -0
- package/projects/corecomponents/src/res/icons/triangle_left.svg +1 -0
- package/projects/corecomponents/src/res/icons/triangle_right.svg +1 -0
- package/projects/corecomponents/src/res/icons/triangle_up.svg +1 -0
- package/projects/corecomponents/src/res/icons/truck.svg +1 -0
- package/projects/corecomponents/src/res/icons/truck_calendar.svg +15 -0
- package/projects/corecomponents/src/res/icons/undo_round_open.svg +1 -0
- package/projects/corecomponents/src/res/icons/user.svg +9 -0
- package/projects/corecomponents/src/res/icons/variants.svg +1 -0
- package/projects/corecomponents/src/res/icons/vbarchart.svg +6 -0
- package/projects/corecomponents/src/res/icons/view.svg +1 -0
- package/projects/corecomponents/src/res/icons/warehouse.svg +1 -0
- package/projects/corecomponents/src/res/icons/watermark.svg +10 -0
- package/projects/corecomponents/src/res/icons/website.svg +1 -0
- package/projects/corecomponents/src/res/icons/wizard.svg +18 -0
- package/projects/corecomponents/src/res/icons/wms.svg +24 -0
- package/projects/corecomponents/src/res/icons/work_in_progress.svg +10 -0
- package/projects/corecomponents/src/res/icons/work_in_progress_round_open.svg +9 -0
- package/projects/corecomponents/src/res/icons/wrench.svg +4 -0
- package/projects/corecomponents/src/res/icons/x_axis.svg +5 -0
- package/projects/corecomponents/src/res/icons/y_axis.svg +5 -0
- package/projects/corecomponents/src/test.ts +28 -0
- package/projects/corecomponents/tsconfig.lib.json +20 -0
- package/projects/corecomponents/tsconfig.lib.prod.json +16 -0
- package/projects/corecomponents/tsconfig.spec.json +17 -0
- package/scripts/export.bat +9 -0
- package/scripts/merge-icons.js +39 -0
- package/scripts/publish.bat +6 -0
- package/src/app/app.component.scss +36 -0
- package/src/app/app.component.spec.ts +31 -0
- package/src/app/app.component.ts +559 -0
- package/src/app/app.module.ts +145 -0
- package/src/app/components/button-showcase.component.ts +82 -0
- package/src/app/components/carousel-3d-showcase.component.ts +70 -0
- package/src/app/components/checkbox-showcase.component.ts +56 -0
- package/src/app/components/co-dialog-showcase.component.ts +189 -0
- package/src/app/components/co-simple-grid-test.component.ts +146 -0
- package/src/app/components/filter-item-showcase.component.ts +178 -0
- package/src/app/components/forms-showcase.component.ts +703 -0
- package/src/app/components/icon-showcase.component.ts +72 -0
- package/src/app/components/input-checkbox-showcase.component.ts +87 -0
- package/src/app/components/input-date-picker-showcase.component.ts +90 -0
- package/src/app/components/input-number-picker-showcase.component.ts +125 -0
- package/src/app/components/input-radio-button-showcase.component.ts +87 -0
- package/src/app/components/input-scanner-showcase.component.ts +35 -0
- package/src/app/components/input-text-showcase.component.ts +200 -0
- package/src/app/components/input-time-showcase.component.ts +104 -0
- package/src/app/components/number-picker-showcase.component.ts +17 -0
- package/src/app/components/simple-grid-showcase.component.ts +60 -0
- package/src/app/model/data-item.ts +9 -0
- package/src/app/model/enum/currency-code.enum.ts +7 -0
- package/src/app/model/enum/language-code.enum.ts +8 -0
- package/src/app/model/map/currencies.map.ts +6 -0
- package/src/app/service/showcase-data.service.ts +1110 -0
- package/src/assets/.gitkeep +0 -0
- package/src/environments/environment.prod.ts +3 -0
- package/src/environments/environment.ts +16 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +13 -0
- package/src/main.ts +12 -0
- package/src/polyfills.ts +65 -0
- package/src/styles.scss +56 -0
- package/src/test.ts +27 -0
- package/tsconfig.app.json +15 -0
- package/tsconfig.json +37 -0
- package/tsconfig.spec.json +18 -0
- package/bundles/colijnit-corecomponents_v12.umd.js +0 -14029
- package/bundles/colijnit-corecomponents_v12.umd.js.map +0 -1
- package/colijnit-corecomponents_v12.d.ts +0 -43
- package/colijnit-corecomponents_v12.metadata.json +0 -1
- package/esm2015/colijnit-corecomponents_v12.js +0 -44
- package/esm2015/lib/components/article-tile/article-tile.component.js +0 -80
- package/esm2015/lib/components/article-tile/article-tile.module.js +0 -35
- package/esm2015/lib/components/base/base-input.component.js +0 -834
- package/esm2015/lib/components/base/base.module.js +0 -22
- package/esm2015/lib/components/base/commit-buttons/commit-buttons.component.js +0 -103
- package/esm2015/lib/components/base/commit-buttons/commit-buttons.module.js +0 -21
- package/esm2015/lib/components/base/dialog-base.component.js +0 -6
- package/esm2015/lib/components/base-input-date-picker/base-input-date-picker.directive.js +0 -25
- package/esm2015/lib/components/button/button.component.js +0 -79
- package/esm2015/lib/components/button/button.module.js +0 -19
- package/esm2015/lib/components/calendar/calendar-template.component.js +0 -342
- package/esm2015/lib/components/calendar/calendar.component.js +0 -45
- package/esm2015/lib/components/calendar/calendar.module.js +0 -28
- package/esm2015/lib/components/card/card.component.js +0 -72
- package/esm2015/lib/components/card/card.module.js +0 -35
- package/esm2015/lib/components/carousel/carousel.component.js +0 -130
- package/esm2015/lib/components/carousel/carousel.module.js +0 -32
- package/esm2015/lib/components/carousel-3d/carousel-3d.component.js +0 -315
- package/esm2015/lib/components/carousel-3d/carousel-3d.module.js +0 -19
- package/esm2015/lib/components/carousel-3d/carouselItem.js +0 -54
- package/esm2015/lib/components/checkmark-overlay/checkmark-overlay.component.js +0 -87
- package/esm2015/lib/components/checkmark-overlay/checkmark-overlay.module.js +0 -19
- package/esm2015/lib/components/co-dialog/co-dialog.component.js +0 -113
- package/esm2015/lib/components/co-dialog/co-dialog.module.js +0 -19
- package/esm2015/lib/components/co-dialog-wizard/co-dialog-wizard.component.js +0 -51
- package/esm2015/lib/components/co-dialog-wizard/co-dialog-wizard.module.js +0 -17
- package/esm2015/lib/components/collapsible/collapsible.component.js +0 -92
- package/esm2015/lib/components/collapsible/collapsible.module.js +0 -19
- package/esm2015/lib/components/color-picker/color-picker.component.js +0 -41
- package/esm2015/lib/components/color-picker/color-picker.module.js +0 -21
- package/esm2015/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.js +0 -79
- package/esm2015/lib/components/core-dialog/core-dialog.module.js +0 -39
- package/esm2015/lib/components/core-dialog/core-dialog.service.js +0 -67
- package/esm2015/lib/components/core-dialog/core-dynamic-component.service.js +0 -93
- package/esm2015/lib/components/double-calendar/double-calendar.component.js +0 -80
- package/esm2015/lib/components/double-calendar/double-calendar.module.js +0 -25
- package/esm2015/lib/components/filter-item/filter-item-viewmodel.js +0 -13
- package/esm2015/lib/components/filter-item/filter-item.component.js +0 -646
- package/esm2015/lib/components/filter-item/filter-item.module.js +0 -43
- package/esm2015/lib/components/filter-item/filter-viewmodel.js +0 -11
- package/esm2015/lib/components/form/form.component.js +0 -184
- package/esm2015/lib/components/form/form.module.js +0 -23
- package/esm2015/lib/components/grid-toolbar/grid-toolbar.component.js +0 -57
- package/esm2015/lib/components/grid-toolbar/grid-toolbar.module.js +0 -23
- package/esm2015/lib/components/grid-toolbar-button/grid-toolbar-button.component.js +0 -28
- package/esm2015/lib/components/grid-toolbar-button/grid-toolbar-button.module.js +0 -19
- package/esm2015/lib/components/icon/icon-cache.service.js +0 -52
- package/esm2015/lib/components/icon/icon.component.js +0 -48
- package/esm2015/lib/components/icon/icon.module.js +0 -25
- package/esm2015/lib/components/icon-collapse-handle/icon-collapse-handle.component.js +0 -64
- package/esm2015/lib/components/icon-collapse-handle/icon-collapse-handle.module.js +0 -23
- package/esm2015/lib/components/image/image.component.js +0 -42
- package/esm2015/lib/components/image/image.module.js +0 -14
- package/esm2015/lib/components/input-checkbox/input-checkbox.component.js +0 -79
- package/esm2015/lib/components/input-checkbox/input-checkbox.module.js +0 -19
- package/esm2015/lib/components/input-date-picker/input-date-picker.component.js +0 -91
- package/esm2015/lib/components/input-date-picker/input-date-picker.module.js +0 -26
- package/esm2015/lib/components/input-date-range-picker/input-date-range-picker.component.js +0 -134
- package/esm2015/lib/components/input-date-range-picker/input-date-range-picker.module.js +0 -27
- package/esm2015/lib/components/input-number-picker/input-number-picker.component.js +0 -314
- package/esm2015/lib/components/input-number-picker/input-number-picker.module.js +0 -23
- package/esm2015/lib/components/input-radio-button/input-radio-button.component.js +0 -84
- package/esm2015/lib/components/input-radio-button/input-radio-button.module.js +0 -19
- package/esm2015/lib/components/input-scanner/bar-code-scanner.js +0 -23
- package/esm2015/lib/components/input-scanner/input-scanner.component.js +0 -69
- package/esm2015/lib/components/input-scanner/input-scanner.module.js +0 -21
- package/esm2015/lib/components/input-scanner/scanner.service.js +0 -28
- package/esm2015/lib/components/input-search/input-search.component.js +0 -76
- package/esm2015/lib/components/input-search/input-search.module.js +0 -21
- package/esm2015/lib/components/input-text/input-text.component.js +0 -224
- package/esm2015/lib/components/input-text/input-text.module.js +0 -33
- package/esm2015/lib/components/input-textarea/input-textarea.component.js +0 -78
- package/esm2015/lib/components/input-textarea/input-textarea.module.js +0 -27
- package/esm2015/lib/components/level-indicator/level-indicator-level.enum.js +0 -7
- package/esm2015/lib/components/level-indicator/level-indicator.component.js +0 -36
- package/esm2015/lib/components/level-indicator/level-indicator.module.js +0 -15
- package/esm2015/lib/components/list-of-values/list-of-values-multiselect-popup.component.js +0 -112
- package/esm2015/lib/components/list-of-values/list-of-values-popup.component.js +0 -242
- package/esm2015/lib/components/list-of-values/list-of-values.component.js +0 -233
- package/esm2015/lib/components/list-of-values/list-of-values.module.js +0 -38
- package/esm2015/lib/components/loader/loader.component.js +0 -84
- package/esm2015/lib/components/loader/loader.module.js +0 -19
- package/esm2015/lib/components/pagination/paginate.pipe.js +0 -99
- package/esm2015/lib/components/pagination/pagination-instance.js +0 -2
- package/esm2015/lib/components/pagination/pagination.component.js +0 -126
- package/esm2015/lib/components/pagination/pagination.module.js +0 -28
- package/esm2015/lib/components/pagination/pagination.service.js +0 -88
- package/esm2015/lib/components/pagination-bar/pagination-bar.component.js +0 -151
- package/esm2015/lib/components/pagination-bar/pagination-bar.module.js +0 -19
- package/esm2015/lib/components/popup/const/popup-window-token.js +0 -3
- package/esm2015/lib/components/popup/interface/popup-button.js +0 -8
- package/esm2015/lib/components/popup/interface/popup-close-event.js +0 -2
- package/esm2015/lib/components/popup/interface/popup-settings.js +0 -42
- package/esm2015/lib/components/popup/interface/popup.js +0 -2
- package/esm2015/lib/components/popup/model/popup-button-globals.js +0 -11
- package/esm2015/lib/components/popup/model/popup-window.js +0 -38
- package/esm2015/lib/components/popup/popup-buttons.component.js +0 -53
- package/esm2015/lib/components/popup/popup-message-display.component.js +0 -47
- package/esm2015/lib/components/popup/popup-window-shell.component.js +0 -159
- package/esm2015/lib/components/popup/popup.module.js +0 -49
- package/esm2015/lib/components/popup/service/popup-shower.service.js +0 -90
- package/esm2015/lib/components/popup/service/prompt.service.js +0 -127
- package/esm2015/lib/components/popup/text-input-popup.component.js +0 -36
- package/esm2015/lib/components/responsive-text/responsive-text.component.js +0 -24
- package/esm2015/lib/components/responsive-text/responsive-text.module.js +0 -19
- package/esm2015/lib/components/simple-grid/base-simple-grid.component.js +0 -164
- package/esm2015/lib/components/simple-grid/simple-grid-cell.component.js +0 -172
- package/esm2015/lib/components/simple-grid/simple-grid-column.directive.js +0 -111
- package/esm2015/lib/components/simple-grid/simple-grid.component.js +0 -465
- package/esm2015/lib/components/simple-grid/simple-grid.module.js +0 -41
- package/esm2015/lib/components/tile/tile.component.js +0 -73
- package/esm2015/lib/components/tile/tile.module.js +0 -23
- package/esm2015/lib/components/tile-select/tile-select.component.js +0 -36
- package/esm2015/lib/components/tile-select/tile-select.module.js +0 -21
- package/esm2015/lib/components/tooltip/tooltip.component.js +0 -77
- package/esm2015/lib/components/tooltip/tooltip.module.js +0 -19
- package/esm2015/lib/components/validation-error/validation-error.component.js +0 -38
- package/esm2015/lib/components/validation-error/validation-error.module.js +0 -25
- package/esm2015/lib/components/view-mode-buttons/content-view-mode.enum.js +0 -11
- package/esm2015/lib/components/view-mode-buttons/view-mode-buttons.component.js +0 -61
- package/esm2015/lib/components/view-mode-buttons/view-mode-buttons.module.js +0 -21
- package/esm2015/lib/core/constant/default-upper-bound-for-range-components.js +0 -4
- package/esm2015/lib/core/constant/java-max-int.js +0 -2
- package/esm2015/lib/core/constant/number-inputs-key-down-white-list.js +0 -45
- package/esm2015/lib/core/decorator/input-boolean.decorator.js +0 -34
- package/esm2015/lib/core/enum/co-direction.js +0 -9
- package/esm2015/lib/core/enum/co-document-image-display-kind.enum.js +0 -7
- package/esm2015/lib/core/enum/co-document-type.enum.js +0 -11
- package/esm2015/lib/core/enum/co-orientation.js +0 -17
- package/esm2015/lib/core/enum/core-components-icon.enum.js +0 -300
- package/esm2015/lib/core/enum/file-type-internal.enum.js +0 -17
- package/esm2015/lib/core/enum/file-type.enum.js +0 -11
- package/esm2015/lib/core/enum/filterItem-mode.enum.js +0 -43
- package/esm2015/lib/core/enum/input-number-picker-show-mode.enum.js +0 -8
- package/esm2015/lib/core/enum/keyboard-code.enum.js +0 -74
- package/esm2015/lib/core/enum/keyboard-key.enum.js +0 -76
- package/esm2015/lib/core/enum/object-right-type.enum.js +0 -7
- package/esm2015/lib/core/enum/popup-button-type.enum.js +0 -12
- package/esm2015/lib/core/enum/popup-type.enum.js +0 -11
- package/esm2015/lib/core/enum/table-name.enum.js +0 -81
- package/esm2015/lib/core/function/any-nill.function.js +0 -6
- package/esm2015/lib/core/function/is-nill.function.js +0 -5
- package/esm2015/lib/core/function/none-nill.function.js +0 -17
- package/esm2015/lib/core/function/not-nill.function.js +0 -5
- package/esm2015/lib/core/model/bounds-constrained-number-value.js +0 -171
- package/esm2015/lib/core/model/check-precision-and-scale-result.js +0 -2
- package/esm2015/lib/core/model/check-within-stepped-bounds-result.js +0 -2
- package/esm2015/lib/core/model/co-document-right.bo.js +0 -3
- package/esm2015/lib/core/model/co-document.bo.js +0 -121
- package/esm2015/lib/core/model/core-components-icon-svg.js +0 -299
- package/esm2015/lib/core/model/element-position.js +0 -10
- package/esm2015/lib/core/model/event/string-prompt-result-event.js +0 -8
- package/esm2015/lib/core/service/form-input-user-change-listener.service.js +0 -25
- package/esm2015/lib/core/service/form-master.service.js +0 -102
- package/esm2015/lib/core/service/ng-zone-wrapper.service.js +0 -20
- package/esm2015/lib/core/utils/array-utils.js +0 -264
- package/esm2015/lib/core/utils/browser-utils.js +0 -100
- package/esm2015/lib/core/utils/direction-enum-utils.js +0 -14
- package/esm2015/lib/core/utils/event-utils.js +0 -53
- package/esm2015/lib/core/utils/file-utils.js +0 -267
- package/esm2015/lib/core/utils/number-utils.js +0 -309
- package/esm2015/lib/core/utils/object-utils.js +0 -186
- package/esm2015/lib/core/utils/string-utils.js +0 -94
- package/esm2015/lib/core/validator/email.validator.js +0 -6
- package/esm2015/lib/core/validator/equal.validator.js +0 -11
- package/esm2015/lib/core/validator/max-string-length.validator.js +0 -10
- package/esm2015/lib/core/validator/password.validator.js +0 -31
- package/esm2015/lib/core/validator/precision-scale.validator.js +0 -11
- package/esm2015/lib/core/validator/required.validator.js +0 -5
- package/esm2015/lib/directives/clickoutside/click-outside-master.service.js +0 -57
- package/esm2015/lib/directives/clickoutside/click-outside.directive.js +0 -71
- package/esm2015/lib/directives/clickoutside/clickoutside.module.js +0 -19
- package/esm2015/lib/directives/observe-visibility/observe-visibility.directive.js +0 -53
- package/esm2015/lib/directives/observe-visibility/observe-visibility.module.js +0 -15
- package/esm2015/lib/directives/overlay/overlay-parent.directive.js +0 -19
- package/esm2015/lib/directives/overlay/overlay.directive.js +0 -161
- package/esm2015/lib/directives/overlay/overlay.module.js +0 -18
- package/esm2015/lib/directives/ripple/ripple-ref.js +0 -26
- package/esm2015/lib/directives/ripple/ripple-renderer.js +0 -160
- package/esm2015/lib/directives/ripple/ripple.directive.js +0 -80
- package/esm2015/lib/directives/ripple/ripple.module.js +0 -24
- package/esm2015/lib/directives/ripple/scroll-dispatcher.service.js +0 -108
- package/esm2015/lib/directives/ripple/scrollable.directive.js +0 -40
- package/esm2015/lib/directives/ripple/viewport-ruler.service.js +0 -73
- package/esm2015/lib/directives/screen-configuration/screen-configuration.directive.js +0 -158
- package/esm2015/lib/directives/screen-configuration/screen-configuration.module.js +0 -19
- package/esm2015/lib/directives/stopclick/stop-click.directive.js +0 -38
- package/esm2015/lib/directives/stopclick/stop-click.module.js +0 -15
- package/esm2015/lib/directives/template-wrapper/template-wrapper.directive.js +0 -68
- package/esm2015/lib/directives/template-wrapper/template-wrapper.module.js +0 -15
- package/esm2015/lib/directives/tooltip/tooltip-directive.module.js +0 -19
- package/esm2015/lib/directives/tooltip/tooltip.directive.js +0 -78
- package/esm2015/lib/interfaces/dialog-response.interface.js +0 -2
- package/esm2015/lib/interfaces/scanner-input.interface.js +0 -2
- package/esm2015/lib/interfaces/screen-config-adapter-component-interface-name.js +0 -4
- package/esm2015/lib/interfaces/screen-config-adapter.component.interface.js +0 -2
- package/esm2015/lib/model/enum/app-button-type.enum.js +0 -11
- package/esm2015/lib/model/enum/app-popup-type.enum.js +0 -8
- package/esm2015/lib/pipes/append.pipe.js +0 -17
- package/esm2015/lib/pipes/append.pipe.module.js +0 -15
- package/esm2015/lib/pipes/filter.pipe.js +0 -16
- package/esm2015/lib/pipes/filter.pipe.module.js +0 -15
- package/esm2015/lib/pipes/prepend.pipe.js +0 -17
- package/esm2015/lib/pipes/prepend.pipe.module.js +0 -15
- package/esm2015/lib/pipes/price-display-pipe.module.js +0 -15
- package/esm2015/lib/pipes/price-display.pipe.js +0 -20
- package/esm2015/lib/service/base-module-screen-config.service.js +0 -205
- package/esm2015/lib/service/base-module.service.js +0 -42
- package/esm2015/lib/service/color-sequence.service.js +0 -23
- package/esm2015/lib/service/overlay.service.js +0 -73
- package/esm2015/lib/translation/core-components-translation.module.js +0 -29
- package/esm2015/lib/translation/core-components-translation.service.js +0 -17
- package/esm2015/lib/translation/core-dictionary.service.js +0 -29
- package/esm2015/lib/translation/core-localize.pipe.js +0 -26
- package/esm2015/public-api.js +0 -130
- package/fesm2015/colijnit-corecomponents_v12.js +0 -13366
- package/fesm2015/colijnit-corecomponents_v12.js.map +0 -1
- package/lib/components/article-tile/article-tile.component.d.ts +0 -22
- package/lib/components/article-tile/article-tile.module.d.ts +0 -2
- package/lib/components/base/base-input.component.d.ts +0 -182
- package/lib/components/base/base.module.d.ts +0 -2
- package/lib/components/base/commit-buttons/commit-buttons.component.d.ts +0 -21
- package/lib/components/base/commit-buttons/commit-buttons.module.d.ts +0 -2
- package/lib/components/base/dialog-base.component.d.ts +0 -4
- package/lib/components/base-input-date-picker/base-input-date-picker.directive.d.ts +0 -15
- package/lib/components/button/button.component.d.ts +0 -29
- package/lib/components/button/button.module.d.ts +0 -2
- package/lib/components/calendar/calendar-template.component.d.ts +0 -60
- package/lib/components/calendar/calendar.component.d.ts +0 -13
- package/lib/components/calendar/calendar.module.d.ts +0 -2
- package/lib/components/card/card.component.d.ts +0 -23
- package/lib/components/card/card.module.d.ts +0 -2
- package/lib/components/carousel/carousel.component.d.ts +0 -23
- package/lib/components/carousel/carousel.module.d.ts +0 -6
- package/lib/components/carousel-3d/carousel-3d.component.d.ts +0 -55
- package/lib/components/carousel-3d/carousel-3d.module.d.ts +0 -2
- package/lib/components/carousel-3d/carouselItem.d.ts +0 -13
- package/lib/components/checkmark-overlay/checkmark-overlay.component.d.ts +0 -17
- package/lib/components/checkmark-overlay/checkmark-overlay.module.d.ts +0 -2
- package/lib/components/co-dialog/co-dialog.component.d.ts +0 -23
- package/lib/components/co-dialog/co-dialog.module.d.ts +0 -2
- package/lib/components/co-dialog-wizard/co-dialog-wizard.component.d.ts +0 -9
- package/lib/components/co-dialog-wizard/co-dialog-wizard.module.d.ts +0 -2
- package/lib/components/collapsible/collapsible.component.d.ts +0 -22
- package/lib/components/collapsible/collapsible.module.d.ts +0 -2
- package/lib/components/color-picker/color-picker.component.d.ts +0 -6
- package/lib/components/color-picker/color-picker.module.d.ts +0 -2
- package/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.d.ts +0 -20
- package/lib/components/core-dialog/core-dialog.module.d.ts +0 -4
- package/lib/components/core-dialog/core-dialog.service.d.ts +0 -15
- package/lib/components/core-dialog/core-dynamic-component.service.d.ts +0 -12
- package/lib/components/double-calendar/double-calendar.component.d.ts +0 -18
- package/lib/components/double-calendar/double-calendar.module.d.ts +0 -2
- package/lib/components/filter-item/filter-item-viewmodel.d.ts +0 -9
- package/lib/components/filter-item/filter-item.component.d.ts +0 -80
- package/lib/components/filter-item/filter-item.module.d.ts +0 -2
- package/lib/components/filter-item/filter-viewmodel.d.ts +0 -8
- package/lib/components/form/form.component.d.ts +0 -39
- package/lib/components/form/form.module.d.ts +0 -2
- package/lib/components/grid-toolbar/grid-toolbar.component.d.ts +0 -19
- package/lib/components/grid-toolbar/grid-toolbar.module.d.ts +0 -2
- package/lib/components/grid-toolbar-button/grid-toolbar-button.component.d.ts +0 -8
- package/lib/components/grid-toolbar-button/grid-toolbar-button.module.d.ts +0 -2
- package/lib/components/icon/icon-cache.service.d.ts +0 -20
- package/lib/components/icon/icon.component.d.ts +0 -17
- package/lib/components/icon/icon.module.d.ts +0 -2
- package/lib/components/icon-collapse-handle/icon-collapse-handle.component.d.ts +0 -21
- package/lib/components/icon-collapse-handle/icon-collapse-handle.module.d.ts +0 -2
- package/lib/components/image/image.component.d.ts +0 -20
- package/lib/components/image/image.module.d.ts +0 -2
- package/lib/components/input-checkbox/input-checkbox.component.d.ts +0 -24
- package/lib/components/input-checkbox/input-checkbox.module.d.ts +0 -2
- package/lib/components/input-date-picker/input-date-picker.component.d.ts +0 -12
- package/lib/components/input-date-picker/input-date-picker.module.d.ts +0 -2
- package/lib/components/input-date-range-picker/input-date-range-picker.component.d.ts +0 -20
- package/lib/components/input-date-range-picker/input-date-range-picker.module.d.ts +0 -2
- package/lib/components/input-number-picker/input-number-picker.component.d.ts +0 -73
- package/lib/components/input-number-picker/input-number-picker.module.d.ts +0 -2
- package/lib/components/input-radio-button/input-radio-button.component.d.ts +0 -19
- package/lib/components/input-radio-button/input-radio-button.module.d.ts +0 -2
- package/lib/components/input-scanner/bar-code-scanner.d.ts +0 -7
- package/lib/components/input-scanner/input-scanner.component.d.ts +0 -23
- package/lib/components/input-scanner/input-scanner.module.d.ts +0 -2
- package/lib/components/input-scanner/scanner.service.d.ts +0 -11
- package/lib/components/input-search/input-search.component.d.ts +0 -18
- package/lib/components/input-search/input-search.module.d.ts +0 -2
- package/lib/components/input-text/input-text.component.d.ts +0 -62
- package/lib/components/input-text/input-text.module.d.ts +0 -2
- package/lib/components/input-textarea/input-textarea.component.d.ts +0 -19
- package/lib/components/input-textarea/input-textarea.module.d.ts +0 -2
- package/lib/components/level-indicator/level-indicator-level.enum.d.ts +0 -5
- package/lib/components/level-indicator/level-indicator.component.d.ts +0 -10
- package/lib/components/level-indicator/level-indicator.module.d.ts +0 -2
- package/lib/components/list-of-values/list-of-values-multiselect-popup.component.d.ts +0 -25
- package/lib/components/list-of-values/list-of-values-popup.component.d.ts +0 -47
- package/lib/components/list-of-values/list-of-values.component.d.ts +0 -37
- package/lib/components/list-of-values/list-of-values.module.d.ts +0 -2
- package/lib/components/loader/loader.component.d.ts +0 -3
- package/lib/components/loader/loader.module.d.ts +0 -2
- package/lib/components/pagination/paginate.pipe.d.ts +0 -15
- package/lib/components/pagination/pagination-instance.d.ts +0 -14
- package/lib/components/pagination/pagination.component.d.ts +0 -38
- package/lib/components/pagination/pagination.module.d.ts +0 -2
- package/lib/components/pagination/pagination.service.d.ts +0 -24
- package/lib/components/pagination-bar/pagination-bar.component.d.ts +0 -33
- package/lib/components/pagination-bar/pagination-bar.module.d.ts +0 -2
- package/lib/components/popup/const/popup-window-token.d.ts +0 -3
- package/lib/components/popup/interface/popup-button.d.ts +0 -8
- package/lib/components/popup/interface/popup-close-event.d.ts +0 -5
- package/lib/components/popup/interface/popup-settings.d.ts +0 -21
- package/lib/components/popup/interface/popup.d.ts +0 -9
- package/lib/components/popup/model/popup-button-globals.d.ts +0 -9
- package/lib/components/popup/model/popup-window.d.ts +0 -21
- package/lib/components/popup/popup-buttons.component.d.ts +0 -13
- package/lib/components/popup/popup-message-display.component.d.ts +0 -12
- package/lib/components/popup/popup-window-shell.component.d.ts +0 -42
- package/lib/components/popup/popup.module.d.ts +0 -4
- package/lib/components/popup/service/popup-shower.service.d.ts +0 -17
- package/lib/components/popup/service/prompt.service.d.ts +0 -17
- package/lib/components/popup/text-input-popup.component.d.ts +0 -12
- package/lib/components/responsive-text/responsive-text.component.d.ts +0 -4
- package/lib/components/responsive-text/responsive-text.module.d.ts +0 -2
- package/lib/components/simple-grid/base-simple-grid.component.d.ts +0 -52
- package/lib/components/simple-grid/simple-grid-cell.component.d.ts +0 -30
- package/lib/components/simple-grid/simple-grid-column.directive.d.ts +0 -42
- package/lib/components/simple-grid/simple-grid.component.d.ts +0 -64
- package/lib/components/simple-grid/simple-grid.module.d.ts +0 -2
- package/lib/components/tile/tile.component.d.ts +0 -16
- package/lib/components/tile/tile.module.d.ts +0 -2
- package/lib/components/tile-select/tile-select.component.d.ts +0 -8
- package/lib/components/tile-select/tile-select.module.d.ts +0 -2
- package/lib/components/tooltip/tooltip.component.d.ts +0 -18
- package/lib/components/tooltip/tooltip.module.d.ts +0 -2
- package/lib/components/validation-error/validation-error.component.d.ts +0 -12
- package/lib/components/validation-error/validation-error.module.d.ts +0 -2
- package/lib/components/view-mode-buttons/content-view-mode.enum.d.ts +0 -8
- package/lib/components/view-mode-buttons/view-mode-buttons.component.d.ts +0 -17
- package/lib/components/view-mode-buttons/view-mode-buttons.module.d.ts +0 -2
- package/lib/core/constant/default-upper-bound-for-range-components.d.ts +0 -2
- package/lib/core/constant/java-max-int.d.ts +0 -1
- package/lib/core/constant/number-inputs-key-down-white-list.d.ts +0 -2
- package/lib/core/decorator/input-boolean.decorator.d.ts +0 -8
- package/lib/core/enum/co-direction.d.ts +0 -6
- package/lib/core/enum/co-document-image-display-kind.enum.d.ts +0 -5
- package/lib/core/enum/co-document-type.enum.d.ts +0 -5
- package/lib/core/enum/co-orientation.d.ts +0 -6
- package/lib/core/enum/core-components-icon.enum.d.ts +0 -298
- package/lib/core/enum/file-type-internal.enum.d.ts +0 -15
- package/lib/core/enum/file-type.enum.d.ts +0 -5
- package/lib/core/enum/filterItem-mode.enum.d.ts +0 -15
- package/lib/core/enum/input-number-picker-show-mode.enum.d.ts +0 -5
- package/lib/core/enum/keyboard-code.enum.d.ts +0 -71
- package/lib/core/enum/keyboard-key.enum.d.ts +0 -70
- package/lib/core/enum/object-right-type.enum.d.ts +0 -5
- package/lib/core/enum/popup-button-type.enum.d.ts +0 -9
- package/lib/core/enum/popup-type.enum.d.ts +0 -9
- package/lib/core/enum/table-name.enum.d.ts +0 -79
- package/lib/core/function/any-nill.function.d.ts +0 -1
- package/lib/core/function/is-nill.function.d.ts +0 -1
- package/lib/core/function/none-nill.function.d.ts +0 -1
- package/lib/core/function/not-nill.function.d.ts +0 -1
- package/lib/core/model/bounds-constrained-number-value.d.ts +0 -46
- package/lib/core/model/check-precision-and-scale-result.d.ts +0 -4
- package/lib/core/model/check-within-stepped-bounds-result.d.ts +0 -8
- package/lib/core/model/co-document-right.bo.d.ts +0 -6
- package/lib/core/model/co-document.bo.d.ts +0 -61
- package/lib/core/model/core-components-icon-svg.d.ts +0 -4
- package/lib/core/model/element-position.d.ts +0 -7
- package/lib/core/model/event/string-prompt-result-event.d.ts +0 -6
- package/lib/core/service/form-input-user-change-listener.service.d.ts +0 -10
- package/lib/core/service/form-master.service.d.ts +0 -26
- package/lib/core/service/ng-zone-wrapper.service.d.ts +0 -6
- package/lib/core/utils/array-utils.d.ts +0 -85
- package/lib/core/utils/browser-utils.d.ts +0 -15
- package/lib/core/utils/direction-enum-utils.d.ts +0 -5
- package/lib/core/utils/event-utils.d.ts +0 -12
- package/lib/core/utils/file-utils.d.ts +0 -29
- package/lib/core/utils/number-utils.d.ts +0 -89
- package/lib/core/utils/object-utils.d.ts +0 -31
- package/lib/core/utils/string-utils.d.ts +0 -25
- package/lib/core/validator/email.validator.d.ts +0 -2
- package/lib/core/validator/equal.validator.d.ts +0 -2
- package/lib/core/validator/max-string-length.validator.d.ts +0 -2
- package/lib/core/validator/password.validator.d.ts +0 -3
- package/lib/core/validator/precision-scale.validator.d.ts +0 -2
- package/lib/core/validator/required.validator.d.ts +0 -2
- package/lib/directives/clickoutside/click-outside-master.service.d.ts +0 -15
- package/lib/directives/clickoutside/click-outside.directive.d.ts +0 -18
- package/lib/directives/clickoutside/clickoutside.module.d.ts +0 -2
- package/lib/directives/observe-visibility/observe-visibility.directive.d.ts +0 -14
- package/lib/directives/observe-visibility/observe-visibility.module.d.ts +0 -2
- package/lib/directives/overlay/overlay-parent.directive.d.ts +0 -6
- package/lib/directives/overlay/overlay.directive.d.ts +0 -25
- package/lib/directives/overlay/overlay.module.d.ts +0 -2
- package/lib/directives/ripple/ripple-ref.d.ts +0 -21
- package/lib/directives/ripple/ripple-renderer.d.ts +0 -56
- package/lib/directives/ripple/ripple.directive.d.ts +0 -56
- package/lib/directives/ripple/ripple.module.d.ts +0 -2
- package/lib/directives/ripple/scroll-dispatcher.service.d.ts +0 -51
- package/lib/directives/ripple/scrollable.directive.d.ts +0 -20
- package/lib/directives/ripple/viewport-ruler.service.d.ts +0 -29
- package/lib/directives/screen-configuration/screen-configuration.directive.d.ts +0 -32
- package/lib/directives/screen-configuration/screen-configuration.module.d.ts +0 -2
- package/lib/directives/stopclick/stop-click.directive.d.ts +0 -10
- package/lib/directives/stopclick/stop-click.module.d.ts +0 -2
- package/lib/directives/template-wrapper/template-wrapper.directive.d.ts +0 -13
- package/lib/directives/template-wrapper/template-wrapper.module.d.ts +0 -2
- package/lib/directives/tooltip/tooltip-directive.module.d.ts +0 -2
- package/lib/directives/tooltip/tooltip.directive.d.ts +0 -20
- package/lib/interfaces/dialog-response.interface.d.ts +0 -6
- package/lib/interfaces/scanner-input.interface.d.ts +0 -3
- package/lib/interfaces/screen-config-adapter-component-interface-name.d.ts +0 -3
- package/lib/interfaces/screen-config-adapter.component.interface.d.ts +0 -10
- package/lib/model/enum/app-button-type.enum.d.ts +0 -9
- package/lib/model/enum/app-popup-type.enum.d.ts +0 -6
- package/lib/pipes/append.pipe.d.ts +0 -4
- package/lib/pipes/append.pipe.module.d.ts +0 -2
- package/lib/pipes/filter.pipe.d.ts +0 -4
- package/lib/pipes/filter.pipe.module.d.ts +0 -2
- package/lib/pipes/prepend.pipe.d.ts +0 -4
- package/lib/pipes/prepend.pipe.module.d.ts +0 -2
- package/lib/pipes/price-display-pipe.module.d.ts +0 -2
- package/lib/pipes/price-display.pipe.d.ts +0 -4
- package/lib/service/base-module-screen-config.service.d.ts +0 -47
- package/lib/service/base-module.service.d.ts +0 -22
- package/lib/service/color-sequence.service.d.ts +0 -4
- package/lib/service/overlay.service.d.ts +0 -13
- package/lib/translation/core-components-translation.module.d.ts +0 -4
- package/lib/translation/core-components-translation.service.d.ts +0 -6
- package/lib/translation/core-dictionary.service.d.ts +0 -12
- package/lib/translation/core-localize.pipe.d.ts +0 -7
- package/public-api.d.ts +0 -126
- /package/{lib → projects/corecomponents/src/lib}/components/article-tile/article-tile.component.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/button/style/_co-ripple.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/button/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/button/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/button/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/button/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/card/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/card/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/card/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/card/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/image/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/image/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/image/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/image/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/loader/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/loader/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/loader/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/loader/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/popup/popup-buttons.component.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/popup/popup-window-shell.component.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/_layout.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/_material-definition.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/_theme.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/material.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/_input.mixins.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/_mixin.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/_variables.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/corecomponents-globals.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/_core.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/_material2-scss-barrel.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/ripple/_co-ripple.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/style/_elevation.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/style/_list-common.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/style/_variables.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/theming/_palette.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/theming/_theming.scss +0 -0
- /package/{lib → projects/corecomponents/src/lib}/style/material2/typography/_typography.scss +0 -0
|
@@ -0,0 +1,1110 @@
|
|
|
1
|
+
import {DataItem} from "../../../projects/corecomponents/src/lib/model/data-item";
|
|
2
|
+
import { Injectable } from "@angular/core";
|
|
3
|
+
|
|
4
|
+
@Injectable()
|
|
5
|
+
export class ShowcaseDataService {
|
|
6
|
+
|
|
7
|
+
public imageForShowcase: string = "data:image/jpg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCABYAKADASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD3+iiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigApksqQQvNIwWNFLMx7AdafWXrtzEuj30GS0r27qqqCSSVIFAGTJ8RPDqZxdSP8A7sZ/rVdviZoA6C6P/bMf414xdQzWMmLqCeAt90yxlc/TNVluFJGG+lOwHuK/ErQSelyP+AD/ABqUfETQjn5rgf8AAB/jXhqTDeDu6dqsLNwRntRYD2xfiFoLHmWVVxksycD9ac/j/Q16SSt9EH+NeHXUuLKT2XFPjl3DOcH60WA9qPxD0T/pv/3wP8ab/wALF0X+5cf98j/GvHFkO7dnNNMh55/WiwHsw+IejH+G4HOPuj/GpU8faI+cPKMdcqOP1rxQStlfm60JKwnfnkqp/n/hRYD2pvH+iL/FMfoo/wAab/wsHRc4HnH/AICP8a8aD9fm70vnY5JzRYVz2FviJo6jOy4P/AR/jUZ+JWjA4MVz/wB8j/GvH2mB79KiEvmukSZeRzhVHJJosFz6C0PxBY+IIJZbIviJtrq64INateZfDy5/sO3vE1CKWIyspXgHoD6GvR7e6gu4xJBKrr7HpQ0MmooopAc1441e50XQPtNrII5DIEL4zgYJ/pXlMnijVnG+W5kGcHJ2/wAq9C+K7bfBrN6Sj/0Fq8jkH2meKBiQrAFsdeBnFNAR+JdVu9T0jyZWaWYTAKFGTx7CuftdO1dwCun3bcf88WrpFn8lv3RCd+BVka3eICVuGzTAw49J1w8nSr3/AL8t/hVxNJ1kHLaXe9P+eLf4VojxBfhs/aX47UL4hv8AP/H0+aAMm+t76Gxl860uIgR1eMgfyqxDp2pyKuzT7tgR1ELf4VePibUwQouWK9we1L/wkuo97pj65oAZHo2rEf8AIOufxjIqQaDq/wD0D5+noKG8S3wB/wBJaoJPFV4hOLpsCgB76RqcRy2n3WPaMmqcVveT6k8MdpO8ixLuQRncOW6iqt142vYQT9pcn0zWx4F8S3ur6vcvdSlooIgFU+56/pQAw6Pq6qf+JZec9P3JqvNpusIhxpV6fpC3+Fely63aIQDKoOOm6qza/Zg/61T+NAHlN3a6+qlY9GvyfUQN/hVPQoNYs9cNxf2F5CpiZVaSFgFOR7V7A2uWpPEgH0NN/tq3b/loKLAchHr975ZCTAjcQMnp1rT0bxBqlvqdsyT43SBThsgjPQit06lZOQzeWzepXJqQXmntz8oxyCF70xHqdFcVpvjBIcRXMnmp/eP3h/jXX2t3BewLPbyCSM9xUtWGcb8WBnwTJ/11H/oLV44kuLy2OeCyivf/ABfoL+JPDV3p0UqxTuu6Fm+6HHTPt615MPhD4xaWEyaho4VGUnb5mcA/SgDk5pQJD65qBphtODivWW+C+nvy2rXW49SEH+NMb4Jaaf8AmL3X/fA/xouB5H9owOvNNa556jivXf8AhR+lHrq13n/dFN/4UbpeedXvPwUUXA8iN36nrURvsdD3r2P/AIUXohHOq6j+BX/Co3+AuiN01fUB/wB8n+lFwPFptSx0btWbNfs3evd/+Gf9BP39X1I/QoP/AGWnf8M++Ge+p6t/38j/APiKLgfPEkpY9a7D4dSkXWp4PPkAj8M11mu/s+6sNUYaBf2raftG030h83PfO1MYp+h/CDxP4WlutQubvTpbcW7iSOF3LHjIxlfUUgOctrhmRSzZNW1m5wccf4Vk28u1OeSCKsCYcc9aoDVW4IU9Kcl0QynOR3/Ksxbj5DS+eMAj1oA2EvGDduveplvzu6jpWF5+Seaf9oxwKYjoP7RYZ2tXovw4uXnhvATlRtP48149Hc/NjivXfhbGf7KvJyPlaUKD9B/9cUnsM76iiipAKKKKACiiigAooooAKKKKACkIBBBGQeopaKAPnnxH8L/F6eIL5dF0uCfTTJugka6VCQeehPGOR+FXvCvwi1y9nuB4ljXToVUeV5Eyys7Z56E4AH8694oouB5iPgrpQGP7UvP++Vpw+C+kgY/tO8/Ja9MooA81/wCFM6R/0ErzrnotZuv/AAha30eSTQp5bvUFKhIp2VFIzzk/SvXKKLgfOQ+Gnj8Nn+yLH/wLX/GvdPC2ijQPDtpYHaZlQNMy9GkP3j9M9PYCtmigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA//2Q==";
|
|
8
|
+
|
|
9
|
+
public get dataItems(): DataItem[] {
|
|
10
|
+
return this._dataItems;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
public gridData: any[] = [];
|
|
14
|
+
|
|
15
|
+
private _dataItems: DataItem[] = [];
|
|
16
|
+
|
|
17
|
+
public multilineData: any = [
|
|
18
|
+
{title: 'Kleur', description: 'De rode'},
|
|
19
|
+
{title: 'Hoofdsteun links', description: 'Dit is de linker hoofdsteun'},
|
|
20
|
+
{title: 'Hoofdsteun rechts', description: 'Dit is de rechter hoofdsteun'},
|
|
21
|
+
{title: 'Pootjes', description: 'Zwarte pootjes'},
|
|
22
|
+
{title: 'Garantie', description: 'Geen'},
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
public kanbanData: any = [
|
|
26
|
+
{
|
|
27
|
+
Id: 'Artikelnummer - ' + 92368221,
|
|
28
|
+
Status: 'Open',
|
|
29
|
+
Summary: 'Analyze the new requirements gathered from the customer.',
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
Id: 'Artikelnummer - ' + 2354757,
|
|
33
|
+
Status: 'Progress',
|
|
34
|
+
Summary: 'Improve application performance',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
Id: 'Artikelnummer - ' + 7654323,
|
|
38
|
+
Status: 'Close',
|
|
39
|
+
Summary: 'Arrange a web meeting with the customer to get new requirements.',
|
|
40
|
+
},
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
constructor() {
|
|
44
|
+
this._initDataItems();
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
private _initDataItems(): void {
|
|
48
|
+
this._dataItems.push({
|
|
49
|
+
id: 1,
|
|
50
|
+
title: "Bankstel 1 titel",
|
|
51
|
+
description: "Bankstel 1 omschrijving",
|
|
52
|
+
price: 5000,
|
|
53
|
+
isActive: false,
|
|
54
|
+
imageData: this.imageForShowcase
|
|
55
|
+
}, {
|
|
56
|
+
id: 2,
|
|
57
|
+
title: "Bankstel 2 titel",
|
|
58
|
+
description: "Bankstel 2 omschrijving",
|
|
59
|
+
price: 4000,
|
|
60
|
+
isActive: true,
|
|
61
|
+
imageData: this.imageForShowcase
|
|
62
|
+
}, {
|
|
63
|
+
id: 3,
|
|
64
|
+
title: "Bankstel 3 titel",
|
|
65
|
+
description: "Bankstel 3 omschrijving",
|
|
66
|
+
price: 3000,
|
|
67
|
+
isActive: false,
|
|
68
|
+
imageData: this.imageForShowcase
|
|
69
|
+
}, {
|
|
70
|
+
id: 4,
|
|
71
|
+
title: "Bankstel 4 titel",
|
|
72
|
+
description: "Bankstel 4 omschrijving",
|
|
73
|
+
price: 2000,
|
|
74
|
+
isActive: false,
|
|
75
|
+
imageData: this.imageForShowcase
|
|
76
|
+
}, {
|
|
77
|
+
id: 5,
|
|
78
|
+
title: "Bankstel 5 titel",
|
|
79
|
+
description: "Bankstel 5 omschrijving",
|
|
80
|
+
price: 1000,
|
|
81
|
+
isActive: false,
|
|
82
|
+
imageData: this.imageForShowcase
|
|
83
|
+
}
|
|
84
|
+
)
|
|
85
|
+
|
|
86
|
+
const data: any[] = [
|
|
87
|
+
["", "M", "", "", "", "", "-1", "Ralf Inbar", " ", ", ", "", "", 11233515, "1"
|
|
88
|
+
], ["", "", "", "", "", "Dit is een tekstregel. Dit is een tekstregel. Dit is een tekstregel. Dit is een tekstregel. Dit is een tekstregel. Dit is een tekstregel. Dit is een tekstregel. Dit is een tekstregel. Dit is een tekstregel. Dit is een tekstregel. Dit is een tekstregel. Dit is een tekstregel. ", "", "", "", "", "", "", "", ""
|
|
89
|
+
], ["", "M", "", "", "", "", 1, "Jetten", "Zonnemare 3 plus deze tekst en deze en deze nog veel langere tekst om te kijken of de terugloop een beetje werkt en nog een keer Zonnemare 3 plus deze tekst en deze en deze nog veel langere tekst om te kijken of de overloop een beetje werkt", "4571 CW, AXEL", "noreply@colijn-it.nl", "0618791168", "0493-313957", "1"
|
|
90
|
+
], ["", "O", "", "", "", "", 100004, "van", "Kooienswater 48", "2715AJ, ZOETERMEER", "noreply@colijn-it.nl", "", "", "1"
|
|
91
|
+
], ["", "O", "", "", "", "", 100008, "bernardo", "Maartensheem 42", "1234aa, HILLEGOM", "", "06-27174470", "", "1"
|
|
92
|
+
], ["", "O", "", "", "", "", 100009, "Mesman", "Zandvoortselaan 355", "2116EN, BENTVELD", "noreply@colijn-it.nl", "", "", "1"
|
|
93
|
+
], ["", "O", "", "", "", "", 100010, "Wenders", "Laan V. Dicklaan 78", "2101PP, HEEMSTEDE", "noreply@colijn-it.nl", "", "", "1"
|
|
94
|
+
], ["", "O", "", "", "", "", 100011, "Passies", "Broekermeerstraat 136", "2131AT, HOOFDDORP", "noreply@colijn-it.nl", "", "", "1"
|
|
95
|
+
], ["", "M", "", "", "", "", 100013, "van", "Haven 134", "2182JM, HILLEGOM", "", "", "", "1"
|
|
96
|
+
], ["", "O", "", "", "", "", 100016, "Boswachter", "Langswater 194", "1069TS, AMSTERDAM", "noreply@colijn-it.nl", "", "", "1"
|
|
97
|
+
], ["", "M", "", "", "", "", 100017, "P", "Albert Swachterlaan 2", "2037RS, HAARLEM", "noreply@colijn-it.nl", "", "", "1"
|
|
98
|
+
], ["", "O", "", "", "", "", 100018, "van", "Tiger 25", "1186JB, AMSTELVEEN", "", "", "", "1"
|
|
99
|
+
], ["", "O", "", "", "", "", 100019, "Steenbergen", "Van Dortstraat 4", "2023JN, HAARLEM", "", "", "", "1"
|
|
100
|
+
], ["", "O", "", "", "", "", 100020, "Diesveld", "Pieter Van Slingerlandstraat 88", "2215SZ, VOORHOUT", "noreply@colijn-it.nl", "", "", "1"
|
|
101
|
+
], ["", "O", "", "", "", "", 100022, "van Dijk-van Leeuwen", "Vageweg 2", "4000, LIEGE", "", "", "", "1"
|
|
102
|
+
], ["", "O", "", "", "", "", 100023, "van de Goederen", "Vledderveld 15", "2151JS, NIEUW VENNEP", "", "0653159116", "", "1"
|
|
103
|
+
], ["", "V", "", "", "", "", 100024, "testse Hfth", "Zonnemare 3", "4571 CW, AXEL", "noreply@colijn-it.nl", "", "", "1"
|
|
104
|
+
], ["", "M", "", "", "", "", 100025, "van Zundert", "Julianalaan 66", "2215HE, VOORHOUT", "", "", "", "1"
|
|
105
|
+
], ["", "O", "", "", "", "", 100026, "Edwin Noort En Manon Vergunst", "Reigerlaan 28", "2211LH, NOORDWIJKERHOUT", "noreply@colijn-it.nl", "", "", "1"
|
|
106
|
+
], ["", "O", "", "", "", "", 100028, "van Huet", "Donkgrevelaan 20", "2071BP, SANTPOORT NOORD", "", "", "", "1"
|
|
107
|
+
], ["", "V", "", "", "", "", 100029, "van Rijn", "Hortensialaan 133", "1424DB, DE KWAKEL", "noreply@colijn-it.nl", "", "", "1"
|
|
108
|
+
], ["", "O", "", "", "", "", 100031, "Doudouh", "Hortensialaan 177", "1424DB, DE KWAKEL", "noreply@colijn-it.nl", "", "", "1"
|
|
109
|
+
], ["", "O", "", "", "", "", 100032, "Hogerwerf", "Hortensialaan 125", "1424DB, DE KWAKEL", "noreply@colijn-it.nl", "06-50487393", "", "1"
|
|
110
|
+
], ["", "O", "", "", "", "", 100033, "Krajenbrink", "Lobbrich Boudgerslaan 24", "1382MJ, WEESP", "noreply@colijn-it.nl", "", "", "1"
|
|
111
|
+
], ["", "M", "", "", "", "", 100035, "Volkerijk", "Kievitshorn 30", "2211LK, NOORDWIJKERHOUT", "", "06-36053530", "", "1"
|
|
112
|
+
], ["", "O", "", "", "", "", 100036, "Groot", "Adm. De Ruyterweg 11", "1931VE, EGMOND AAN ZEE", "", "", "", "1"
|
|
113
|
+
], ["", "O", "", "", "", "", 100039, "Vermeij", "J.P. Sweelincksingel 2", "2132KL, HOOFDDORP", "noreply@colijn-it.nl", "", "", "1"
|
|
114
|
+
], ["", "O", "", "", "", "", 100040, "Boom", "Oude Kruisweg 124", "2142EJ, CRUQUIUS", "", "", "", "1"
|
|
115
|
+
], ["", "O", "", "", "", "", 100044, "Geerdink", "Maan Bastion 178", "1991RC, VELSERBROEK", "noreply@colijn-it.nl", "geen", "", "1"
|
|
116
|
+
], ["", "O", "", "", "", "", 100062, "Bosch", "Sarphatikade 92", "1017WV, AMSTERDAM", "", "", "", "1"
|
|
117
|
+
], ["", "O", "", "", "", "", 100065, "van Staaveren", "Oranjeboomstraat 133", "2013XC, Haarlem", "", "", "", "1"
|
|
118
|
+
], ["", "O", "", "", "", "", 100069, "Verlaan", "Liesbos 351", "2134SL, Hoofddorp", "", "", "", "1"
|
|
119
|
+
], ["", "O", "", "", "", "", 100070, "Dissels", "Graan Voor Visch 13826", "2132VN, HOOFDDORP", "", "", "", "1"
|
|
120
|
+
], ["", "O", "", "", "", "", 100079, "Prenen", "Duitslandlaan 86", "2034BD, Haarlem", "", "", "", "1"
|
|
121
|
+
], ["", "O", "", "", "", "", 100080, "Holtuin", "Hoekenes 43", "1161RV, ZWANENBURG", "", "", "", "1"
|
|
122
|
+
], ["", "O", "", "", "", "", 100081, "Juricic", "Schoonenburgsingel 12", "2135GB, HOOFDDORP", "noreply@colijn-it.nl", "", "", "1"
|
|
123
|
+
], ["", "O", "", "", "", "", 100082, "Dardouh", "Romestraat 83", "2034VE, Haarlem", "", "", "", "1"
|
|
124
|
+
], ["", "O", "", "", "", "", 100083, "Stangenberger", "Piet Heinflat 67", "2132TE, HOOFDDORP", "", "", "", "1"
|
|
125
|
+
], ["", "O", "", "", "", "", 100087, "Opdam", "Dirk Hartogstraat 23", "1972MG, IJMUIDEN", "", "06-53704995", "", "1"
|
|
126
|
+
], ["", "O", "", "", "", "", 100088, "Rustveld", "Riet 8", "1422SW, Uithoorn", "", "", "", "1"
|
|
127
|
+
], ["", "O", "", "", "", "", 100089, "Cakmak", "Bandholm 28", "2133DK, HOOFDDORP", "", "", "", "1"
|
|
128
|
+
], ["", "M", "", "", "", "", 10009, "Hardeman", "Raupplaan 61", "5673 AV, NUENEN", "", "", "040-28362291", "1"
|
|
129
|
+
], ["", "O", "", "", "", "", 100090, "Meijerink", "Mastbos 449", "2134NM, HOOFDDORP", "", "", "", "1"
|
|
130
|
+
], ["", "O", "", "", "", "", 100091, "Kooy", "Geleria 119", "2434AG, Hoofddorp", "", "", "", "1"
|
|
131
|
+
], ["", "O", "", "", "", "", 100092, "Groenewegen", "Mauritsstraat 22161", "LISSE, ", "noreply@colijn-it.nl", "", "", "1"
|
|
132
|
+
], ["", "O", "", "", "", "", 100127, "Buijserd", "Zwanebloemstraat 33", "2215GH, VOORHOUT", "noreply@colijn-it.nl", "06-48577043", "", "1"
|
|
133
|
+
], ["", "O", "", "", "", "", 10013, "Buro111", "Jannewekken 2", "4301 HH, ZIERIKZEE", "noreply@colijn-it.nl", "", "045-5252258", "1"
|
|
134
|
+
], ["", "O", "", "", "", "", 100289, "Santen", "Zijdelveld 60", "1421TL, UITHOORN", "", "", "", "1"
|
|
135
|
+
], ["", "O", "", "", "", "", 100290, "van Santen", "Bolwerksepoort 29", "2152EW, NIEUW VENNEP", "noreply@colijn-it.nl", "06-50917293", "", "1"
|
|
136
|
+
], ["", "M", "", "", "", "", 100, "M.S. Emeis", "Koningsweg 45", "7361 TB, BEEKBERGEN", "", "", "", "1"
|
|
137
|
+
], ["", "O", "", "", "", "", 100652, "van der Veldt", "Utrechtlaan 33", "2101TS, Heemstede", "", "", "", "1"
|
|
138
|
+
], ["", "M", "", "", "", "", 1007, "H.D. Datema", "Reelaan 48", "9675 NW, WINSCHOTEN", "", "", "", "1"
|
|
139
|
+
], ["", "O", "", "", "", "", 100926, "Woldman", "Funenpark 206", "1018AK, Amsterdam", "", "", "", "1"
|
|
140
|
+
], ["", "O", "", "", "", "", 100929, "Essaiem", "Mercuriusstraat 23", "1431XC, Aalsmeer", "", "", "", "1"
|
|
141
|
+
], ["", "O", "", "", "", "", 100933, "Kastenberg", "Saffierstraat 142", "9743LL, Groningen", "", "", "", "1"
|
|
142
|
+
], ["", "O", "", "", "", "", 100940, "Hoogenes", "Piet Heinstraat 1", "2411VK, BODEGRAVEN", "", "", "", "1"
|
|
143
|
+
], ["", "O", "", "", "", "", 100942, "van Driel", "Straatweg 160", "3621BW, Breukelen ut", "", "", "", "1"
|
|
144
|
+
], ["", "O", "", "", "", "", 100944, "ten Bv", "Postbus 1578", "2003BP, Haarlem", "", "", "", "1"
|
|
145
|
+
], ["", "O", "", "", "", "", 100946, "Wijnands", "Burg. van leeuwenlaan 158", "1063NV, Amsterdam", "", "", "", "1"
|
|
146
|
+
], ["", "O", "", "", "", "", 100951, "Haveman", "Calveslo 42", "1433NH, Kudelstaart", "", "", "", "1"
|
|
147
|
+
], ["", "O", "", "", "", "", 100953, "Claassen", "Stelling 34", "1424EL, De kwakel", "", "", "", "1"
|
|
148
|
+
], ["", "O", "", "", "", "", 100954, "Alpaydin", "M. Wredestraat 6", "2037LN, HAARLEM", "", "", "", "1"
|
|
149
|
+
], ["", "O", "", "", "", "", 100957, "de Bruin", "Figarolaan 38", "2152JC, NIEUW VENNEP", "", "", "", "1"
|
|
150
|
+
], ["", "O", "", "", "", "", 100961, "Dc", "Zandvoorterweg 77", "2111GT, Aerdenhout", "", "", "", "1"
|
|
151
|
+
], ["", "O", "", "", "", "", 100963, "Smit", "Poelven 50", "1901HH, Castricum", "", "", "", "1"
|
|
152
|
+
], ["", "O", "", "", "", "", 100964, "Bv", "Ziesenniskade 19", "1017RT, Amsterdam", "", "", "", "1"
|
|
153
|
+
], ["", "O", "", "", "", "", 100967, "Drijver", "Paulus potterstraat 7", "1971XN, Ijmuiden", "", "", "", "1"
|
|
154
|
+
], ["", "O", "", "", "", "", 100968, "Cakmak", "Bandholm 28", "2133DF, HOOFDDORP", "", "", "", "1"
|
|
155
|
+
], ["", "O", "", "", "", "", 100969, "Rademaker", "Anne Franklaan 74", "2135HB, HOOFDDORP", "", "", "", "1"
|
|
156
|
+
], ["", "O", "", "", "", "", 100970, "Kriek", "Vrijbuiterhof 11", "2132TL, HOOFDDORP", "", "", "", "1"
|
|
157
|
+
], ["", "O", "", "", "", "", 100973, "v. Krieken", "E. Brandstromstraat 206", "2037LX, HAARLEM", "", "", "", "1"
|
|
158
|
+
], ["", "O", "", "", "", "", 100974, "Janssen", "Loodwitmolen 64", "1703VE, HEERHOGOWAARD", "", "", "", "1"
|
|
159
|
+
], ["", "O", "", "", "", "", 100979, "Kniese", "Wilhelminaplein 19", "2103GS, Heemstede", "", "06-20979162", "", "1"
|
|
160
|
+
], ["", "O", "", "", "", "", 100980, "Mr Scholte", "De Cordesstraatnlaan 151", "3151BK, HOEK VAN HOLLAND", "noreply@colijn-it.nl", "", "", "1"
|
|
161
|
+
], ["", "O", "", "", "", "", 100981, "Burggraaf", "Kleverparkweg 100", "2023CJ, HAARLEM", "", "", "", "1"
|
|
162
|
+
], ["", "O", "", "", "", "", 100983, "Hazelaar", "Waterman 53", "2163BB, Lisse", "noreply@colijn-it.nl", "", "", "1"
|
|
163
|
+
], ["", "O", "", "", "", "", 100984, "de Boer", "De Nachtegaal 8", "2104BN, HEEMSTEDE", "", "", "", "1"
|
|
164
|
+
], ["", "O", "", "", "", "", 100985, "Wilders", "Bovenveen 32", "1507MK, Zaandam", "", "", "", "1"
|
|
165
|
+
], ["", "O", "", "", "", "", 100986, "Vis", "Rijksstraatweg 357", "2025DB, Haarlem", "", "", "", "1"
|
|
166
|
+
], ["", "O", "", "", "", "", 100987, "Stammes", "Hillegommerdijk 308", "2144KP, Beinsdorp", "", "", "", "1"
|
|
167
|
+
], ["", "O", "", "", "", "", 100988, "Draijer", "Hillinnenweg 25", "2182VA, HILLEGOM", "", "", "", "1"
|
|
168
|
+
], ["", "O", "", "", "", "", 100989, "Hellemans", "Lorentzstraat 278", "2041SM, Zandvoort", "", "", "", "1"
|
|
169
|
+
], ["", "O", "", "", "", "", 100990, "Hollander", "De slufter 50", "2134XK, Hoofddorp", "", "", "", "1"
|
|
170
|
+
], ["", "O", "", "", "", "", 100991, "Rijsdijk", "Kromboomsveld 19", "2041GJ, ZANDVOORT", "", "", "", "1"
|
|
171
|
+
], ["", "O", "", "", "", "", 100992, "de Koning", "Lunetten 2", "2141MX, VIJFHUIZEN NH", "noreply@colijn-it.nl", "", "", "1"
|
|
172
|
+
], ["", "O", "", "", "", "", 100993, "van der Heijde", "Roggekamp 71", "1112HZ, DIEMEN", "", "", "", "1"
|
|
173
|
+
], ["", "O", "", "", "", "", 100994, "Valk", "Amestelle 267", "1161BB, Zwanenburg", "", "06-21222020", "", "1"
|
|
174
|
+
], ["", "O", "", "", "", "", 100995, "Smit", "Elisa van Calcarstraat 72", "2135LS, HOOFDDORP", "", "", "", "1"
|
|
175
|
+
], ["", "O", "", "", "", "", 100996, "Nefkens", "Vilniusstraat 31", "2034EM, HAARLEM", "", "023-5402012jolanda", "", "1"
|
|
176
|
+
], ["", "O", "", "", "", "", 100997, "Wilders", "Lange Vijfmatlaan 32", "2035LG, HAARLEM", "noreply@colijn-it.nl", "06-11146401", "", "1"
|
|
177
|
+
], ["", "O", "", "", "", "", 100999, "de Jonge", "Haya v. somerensingel 91", "2135HX, Hoofddorp", "", "", "", "1"
|
|
178
|
+
], ["", "O", "", "", "", "", 101002, "Tol", "Zwanebloemplantsoen 58", "1991HE, Velserbroek", "", "", "", "1"
|
|
179
|
+
], ["", "O", "", "", "", "", 101005, "Mahulete", "Leonard springerlaan 314", "2033TH, Haarlem", "", "", "", "1"
|
|
180
|
+
], ["", "O", "", "", "", "", 101006, "van Aardam", "Goudplaat 6", "2134WK, Hoofddorp", "", "", "", "1"
|
|
181
|
+
], ["", "O", "", "", "", "", 101007, "van Breda", "Parklaan 29", "2171EB, Sassenheim", "", "", "", "1"
|
|
182
|
+
], ["", "O", "", "", "", "", 101008, "Hermans", "Zonnekant 33", "2203NA, Noordwijk", "", "", "", "1"
|
|
183
|
+
], ["", "O", "", "", "", "", 101009, "Schijf", "Hoofdstraat 31", "2181EA, Hillegom", "", "", "", "1"
|
|
184
|
+
], ["", "O", "", "", "", "", 101013, "Baay", "Pres. Steijnstraat 62", "2021VG, HAARLEM", "", "", "", "1"
|
|
185
|
+
], ["", "O", "", "", "", "", 101015, "Rusconi", "Oeverpad 504", "1068PM, Amsterdam", "", "", "", "1"
|
|
186
|
+
], ["", "O", "", "", "", "", 101016, "v. Lierop", "Burg. Niekerklaan 16", "2182GM, HILLEGOM", "", "", "", "1"
|
|
187
|
+
], ["", "O", "", "", "", "", 101017, "Hiep", "Stationsplein 45", "1382AD, WEESP", "", "", "", "1"
|
|
188
|
+
], ["", "O", "", "", "", "", 101019, "Roodenburg", "Zernikelaan 1", "2105RM, Heemstede", "", "", "", "1"
|
|
189
|
+
], ["", "O", "", "", "", "", 101020, "van der Zon", "Postkoets 27", "2171NB, Sassenheim", "", "", "", "1"
|
|
190
|
+
], ["", "O", "", "", "", "", 101021, "Straus", "Engelandlaan 1028", "2034GC, HAARLEM", "", "", "", "1"
|
|
191
|
+
], ["", "O", "", "", "", "", 101022, "Hoogewerf", "Maria Tesselschadelaan 12", "2135RD, HOOFDDORP", "", "", "", "1"
|
|
192
|
+
], ["", "O", "", "", "", "", 101023, "Meeuwenoord", "Herenweg 36", "2211CD, NOORDWIJKERHOUT", "", "", "", "1"
|
|
193
|
+
], ["", "O", "", "", "", "", 101024, "Plantinga", "Bagijnenkamp 14", "1991BP, VELSERBROEK", "", "", "", "1"
|
|
194
|
+
], ["", "O", "", "", "", "", 101025, "Wickel", "Kanaalstraat 62", "7311ML, Apeldoorn", "", "", "", "1"
|
|
195
|
+
], ["", "O", "", "", "", "", 101026, "Hazelaar", "Anke servaesstraat 38", "2162KP, Lisse", "", "06-53691273", "", "1"
|
|
196
|
+
], ["", "O", "", "", "", "", 101027, "Suler", "Brandaris 25", "2134XV, Hoofddorp", "", "", "", "1"
|
|
197
|
+
], ["", "O", "", "", "", "", 101028, "Arends", "Regulierspoort 70", "2152RB, Nieuw vennep", "", "", "", "1"
|
|
198
|
+
], ["", "O", "", "", "", "", 101029, "Creemer", "Garstenstraat 57", "1393RH, NIGTEVECHT", "", "", "", "1"
|
|
199
|
+
], ["", "O", "", "", "", "", 101030, "Schuuring", "Wilhelminastraat 6", "1182ET, Amstelveen", "", "", "", "1"
|
|
200
|
+
], ["", "O", "", "", "", "", 101031, "v. Went", "Zandvoortsestraat 39", "2201SC, Noordwijk", "", "", "", "1"
|
|
201
|
+
], ["", "O", "", "", "", "", 101032, "Schaay", "Nabuccosingel 145", "2152PA, NIEUW VENNEP", "", "", "", "1"
|
|
202
|
+
], ["", "O", "", "", "", "", 101033, "van Lieshout", "Catharijnepoort 32", "2152ES, Nieuw vennep", "", "", "", "1"
|
|
203
|
+
], ["", "O", "", "", "", "", 101034, "Verweij", "Bevrijdingshove 2", "2172VT, Sassenheim", "", "", "", "1"
|
|
204
|
+
], ["", "O", "", "", "", "", 101035, "Stevens", "Vuurdoornstraat 16", "2165CJ, LISSERBROEK", "", "", "", "1"
|
|
205
|
+
], ["", "O", "", "", "", "", 101036, "Morssink", "De Vang 2", "3642CS, MIJDRECHT", "", "", "", "1"
|
|
206
|
+
], ["", "O", "", "", "", "", 101038, "Duivenvoorden", "Fahrenheitstraat 38", "2041CJ, Zandvoort", "", "", "", "1"
|
|
207
|
+
], ["", "O", "", "", "", "", 101039, "Onderwater", "Parklaan 9", "2181NB, HILLEGOM", "", "06-25060175", "", "1"
|
|
208
|
+
], ["", "O", "", "", "", "", 101040, "Rip", "Zaaierstraat 57", "2151CK, Nieuw vennep", "", "", "", "1"
|
|
209
|
+
], ["", "O", "", "", "", "", 101041, "van Kampen", "Stationsweg 250", "2182BJ, Hillegom", "", "", "", "1"
|
|
210
|
+
], ["", "O", "", "", "", "", 101042, "van Eijk", "Spilstraat 3", "1433HD, Kudelstaart", "", "", "", "1"
|
|
211
|
+
], ["", "O", "", "", "", "", 101043, "Lohuis", "Dr. Schaepmanlaan 44", "2104VD, HEEMSTEDE", "", "", "", "1"
|
|
212
|
+
], ["", "O", "", "", "", "", 101044, "Veldwijk", "Cesar Francklaan 10", "2102EC, HEEMSTEDE", "", "", "", "1"
|
|
213
|
+
], ["", "O", "", "", "", "", 101045, "Wuntke", "Postbus 104", "2200AL, Noordwijk", "", "", "", "1"
|
|
214
|
+
], ["", "O", "", "", "", "", 101046, "van der Meer", "Zuideinde 64", "2371BX, Roelofarendsveen", "noreply@colijn-it.nl", "", "", "1"
|
|
215
|
+
], ["", "O", "", "", "", "", 101047, "Koopman", "Von bruckenfocklaan 23", "2102XA, Heemstede", "", "", "", "1"
|
|
216
|
+
], ["", "O", "", "", "", "", 101048, "v.d. Laan", "Westbroekerweg 69", "1991LX, VELSERBROEK", "", "", "", "1"
|
|
217
|
+
], ["", "O", "", "", "", "", 101049, "de Vos - Burchart", "Benkoelenstraat 39", "2022PJ, Haarlem", "", "", "", "1"
|
|
218
|
+
], ["", "O", "", "", "", "", 101050, "Warmedam", "Valkenburgerlaan 26", "2103AP, HEEMSTEDE", "noreply@colijn-it.nl", "06-10948402", "", "1"
|
|
219
|
+
], ["", "O", "", "", "", "", 101051, "Bahlman", "Jan Benninghweg 18", "1191VA, OUDERKERK AAN DE AMSTEL", "", "", "", "1"
|
|
220
|
+
], ["", "O", "", "", "", "", 101052, "Klaver", "Rijksstraatweg 357", "2025DB, Haarlem", "", "", "", "1"
|
|
221
|
+
], ["", "O", "", "", "", "", 101053, "van der Veldt", "Pijlslaan 12", "2014TN, Haarlem", "", "", "", "1"
|
|
222
|
+
], ["", "O", "", "", "", "", 101054, "de Blok", "Dr. Schaepmanlaan 19", "2104VA, HEEMSTEDE", "", "", "", "1"
|
|
223
|
+
], ["", "O", "", "", "", "", 101055, "Kleinlooh", "Tamarindestraat 3", "2023VM, HAARLEM", "", "", "", "1"
|
|
224
|
+
], ["", "O", "", "", "", "", 101056, "Bijvoet", "Heemsteedse Dreef 201", "2101KE, HEEMSTEDE", "", "", "", "1"
|
|
225
|
+
], ["", "O", "", "", "", "", 101057, "Rozendaal", "Burg. goudsmitlaan 14", "3956GT, Leersum", "", "", "", "1"
|
|
226
|
+
], ["", "O", "", "", "", "", 101058, "Ran", "Costa del Sol 12", "2037AM, HAARLEM", "", "", "", "1"
|
|
227
|
+
], ["", "O", "", "", "", "", 101059, "van Vegten", "Sterkenburg 25", "1083VH, Amsterdam", "", "", "", "1"
|
|
228
|
+
], ["", "O", "", "", "", "", 101060, "Kossen", "Min. van Houtenlaan 7", "1981EA, VELSEN-ZUID", "", "", "", "1"
|
|
229
|
+
], ["", "O", "", "", "", "", 101061, "Martijn", "Sijthoffstraat 49", "2332PZ, Leiden", "", "", "", "1"
|
|
230
|
+
], ["", "O", "", "", "", "", 101062, "Mulder", "Fermoor 46", "1423ED, Uithoorn", "", "", "", "1"
|
|
231
|
+
], ["", "O", "", "", "", "", 101063, "van Saase", "Maurick 52", "2181LC, HILLEGOM", "noreply@colijn-it.nl", "", "", "1"
|
|
232
|
+
], ["", "O", "", "", "", "", 101064, "Assendelft", "Jan Benninghweg 6", "1191VA, OUDERKERK AAN DE AMSTEL", "noreply@colijn-it.nl", "06-20302388", "", "1"
|
|
233
|
+
], ["", "O", "", "", "", "", 101065, "de Groot", "Spoorzichtlaan 12", "2106AV, Heemstede", "", "", "", "1"
|
|
234
|
+
], ["", "O", "", "", "", "", 101066, "van Kampen", "Piet Heinlaan 1", "2121XB, BENNEBROEK", "", "", "", "1"
|
|
235
|
+
], ["", "O", "", "", "", "", 101067, "Linkens", "Remeijden 147", "1068XK, Amsterdam", "", "", "", "1"
|
|
236
|
+
], ["", "O", "", "", "", "", 101068, "Apeldoorn", "Dopplerdomein 59", "6229GP, Maastricht", "", "", "", "1"
|
|
237
|
+
], ["", "O", "", "", "", "", 101069, "van der Veldt", "Jan Gijzenkade 51", "2025BB, HAARLEM", "", "06-49415112", "", "1"
|
|
238
|
+
], ["", "O", "", "", "", "", 101070, "van Breda", "Parklaan 29", "2171EB, Sassenheim", "", "", "", "1"
|
|
239
|
+
], ["", "O", "", "", "", "", 101071, "van Breda", "Parklaan 29", "2171EB, Sassenheim", "noreply@colijn-it.nl", "", "", "1"
|
|
240
|
+
], ["", "O", "", "", "", "", 101072, "Enthoven", "Hillegommerdijk 151", "2165AR, LISSERBROEK", "", "", "", "1"
|
|
241
|
+
], ["", "O", "", "", "", "", 101073, "Lodder van dijk", "Koppestokstraat 67", "2014AN, Haarlem", "", "", "", "1"
|
|
242
|
+
], ["", "O", "", "", "", "", 101074, "Bos", "Texelhof 66", "2036KL, HAARLEM", "", "", "", "1"
|
|
243
|
+
], ["", "O", "", "", "", "", 101075, "van Boekel", "Jaap Buishof 40", "2111TH, AERDENHOUT", "", "", "", "1"
|
|
244
|
+
], ["", "O", "", "", "", "", 101076, "van Velzen", "Frederikslaan 8", "2182DD, HILLEGOM", "", "", "", "1"
|
|
245
|
+
], ["", "O", "", "", "", "", 101077, "Koopman", "Von Bruckenfocklaan 23", "2102XA, HEEMSTEDE", "", "", "", "1"
|
|
246
|
+
], ["", "O", "", "", "", "", 101078, "Admiraal", "Domppad 6", "2201LN, NOORDWIJK ZH", "", "", "", "1"
|
|
247
|
+
], ["", "O", "", "", "", "", 101079, "Hoyer", "Balgzand 92", "2036KZ, HAARLEM", "", "", "", "1"
|
|
248
|
+
], ["", "O", "", "", "", "", 101080, "Laven", "Annie Romeinstraat 102", "2135SJ, HOOFDDORP", "", "", "", "1"
|
|
249
|
+
], ["", "O", "", "", "", "", 101081, "de Wit", "Kerkstraat 108", "1941GD, BEVERWIJK", "", "", "", "1"
|
|
250
|
+
], ["", "O", "", "", "", "", 101082, "Rachman", "Kathe Kollwitzstraat 23", "1183BW, AMSTELVEEN", "", "", "", "1"
|
|
251
|
+
], ["", "O", "", "", "", "", 101083, "Burundukov", "Haya v. Somerensingel 37", "2135HW, HOOFDDORP", "", "", "", "1"
|
|
252
|
+
], ["", "O", "", "", "", "", 101084, "Ferreira", "Chr. koetsstraat 22", "2036AB, Haarlem", "", "", "", "1"
|
|
253
|
+
], ["", "O", "", "", "", "", 101085, "van der Meij", "Ringoever 17", "2181NB, HILLEGOM", "noreply@colijn-it.nl", "", "", "1"
|
|
254
|
+
], ["", "O", "", "", "", "", 101086, "Smit", "Julius caesarlaan 46", "2314BR, Leiden", "", "", "", "1"
|
|
255
|
+
], ["", "O", "", "", "", "", 101087, "v.d. Velden", "Turfsteker 2", "1121PE, Landsmeer", "", "", "", "1"
|
|
256
|
+
], ["", "O", "", "", "", "", 101088, "van Rutten", "Cesar Francklaan 6", "2102EC, HEEMSTEDE", "noreply@colijn-it.nl", "", "", "1"
|
|
257
|
+
], ["", "O", "", "", "", "", 101089, "Hulsebos", "Strawinskylaan 50", "2102CR, HEEMSTEDE", "", "", "", "1"
|
|
258
|
+
], ["", "O", "", "", "", "", 101090, "Combee", "Lorentzhof 34", "1433LT, Kudelstaart", "", "", "", "1"
|
|
259
|
+
], ["", "O", "", "", "", "", 101091, "Driehuizen", "Max Wuwestraat 73", "2042RB, ZANDVOORT", "", "", "", "1"
|
|
260
|
+
], ["", "O", "", "", "", "", 101092, "Kerzaan", "Sandenburgh 133", "2036PC, Haarlem", "", "", "", "1"
|
|
261
|
+
], ["", "O", "", "", "", "", 101093, "Modders", "Theemsstraat 36", "2014RX, Haarlem", "", "", "", "1"
|
|
262
|
+
], ["", "O", "", "", "", "", 101094, "van den Berg", "Dr. Schaepmanlaan 7", "2211AR, NOORDWIJKERHOUT", "", "", "", "1"
|
|
263
|
+
], ["", "O", "", "", "", "", 101095, "van den Bos", "Van den Eindekade 117", "2102LE, HEEMSTEDE", "", "", "", "1"
|
|
264
|
+
], ["", "O", "", "", "", "", 101096, "Hendriks", "Hanstholm 11", "2133KA, Hoofddorp", "", "", "", "1"
|
|
265
|
+
], ["", "O", "", "", "", "", 101097, "Geenen", "Kortianderlaan 88", "1187EE, AMSTELVEEN", "", "", "", "1"
|
|
266
|
+
], ["", "O", "", "", "", "", 101098, "v.d. Velde", "Baljuw 40", "1412DL, NAARDEN", "", "", "", "1"
|
|
267
|
+
], ["", "O", "", "", "", "", 101099, "van der Hulst", "Jean Landrehof 38", "1251DD, LAREN NH", "noreply@colijn-it.nl", "06-65567359", "", "1"
|
|
268
|
+
], ["", "O", "", "", "", "", 101100, "Ledegang", "Genieweg 20", "3641RH, MIJDRECHT", "", "", "", "1"
|
|
269
|
+
], ["", "O", "", "", "", "", 101101, "Ingelse", "Gilles van leedenbergstraat 16", "1052VG, AMSTERDAM", "", "", "", "1"
|
|
270
|
+
], ["", "O", "", "", "", "", 101102, "Vink", "Duinschooten 12", "2211ZL, NOORDWIJKERHOUT", "", "", "", "1"
|
|
271
|
+
], ["", "O", "", "", "", "", 101103, "Peekel", "Abeelenpark 9", "2211ZH, NOORDWIJKERHOUT", "noreply@colijn-it.nl", "06-53106287", "", "1"
|
|
272
|
+
], ["", "O", "", "", "", "", 101104, "Slot", "Annie Romeinstraat 136", "2135SJ, HOOFDDORP", "", "", "", "1"
|
|
273
|
+
], ["", "O", "", "", "", "", 101105, "Hartsinck", "Asterlaan 11", "2111BG, AERDENHOUT", "", "", "", "1"
|
|
274
|
+
], ["", "O", "", "", "", "", 101106, "Baars", "Dotterbloemweg 20", "1433WC, KUDELSTAART", "noreply@colijn-it.nl", "", "", "1"
|
|
275
|
+
], ["", "O", "", "", "", "", 101107, "van Braam", "Sawahstraat 51", "1448BB, PURMEREND", "", "", "", "1"
|
|
276
|
+
], ["", "O", "", "", "", "", 101108, "Sheik Joesoef", "Tango 60", "2152SH, NIEUW VENNEP", "", "", "", "1"
|
|
277
|
+
], ["", "O", "", "", "", "", 101109, "van Deursen", "Cat. Van Rennesplaats 11", "2033NX, HAARLEM", "", "06-14625008", "", "1"
|
|
278
|
+
], ["", "O", "", "", "", "", 101110, "Kune", "Prof. Pelstraat 31", "2035CP, HAARLEM", "", "", "", "1"
|
|
279
|
+
], ["", "O", "", "", "", "", 101111, "van Dijk", "De muy 61", "2134XJ, Hoofddorp", "", "", "", "1"
|
|
280
|
+
], ["", "O", "", "", "", "", 101112, "Meijer", "Zuilensteinsingel 36", "2151ED, Nieuw vennep", "", "", "", "1"
|
|
281
|
+
], ["", "O", "", "", "", "", 101113, "Bonaire Exclusief", "Dodaarslaan 63", "3645JB, VINKEVEEN", "", "", "", "1"
|
|
282
|
+
], ["", "O", "", "", "", "", 101114, "Wassenaar", "Westerdreef 28", "2161GN, Lisse", "", "", "", "1"
|
|
283
|
+
], ["", "O", "", "", "", "", 101115, "van Bavelgem", "Vondellaan 43", "2041BB, ZANDVOORT", "", "06-33757577", "", "1"
|
|
284
|
+
], ["", "O", "", "", "", "", 101116, "Trouwen", "Oranjelaan 4", "2051HL, OVERVEEN", "noreply@colijn-it.nl", "", "", "1"
|
|
285
|
+
], ["", "O", "", "", "", "", 101117, "Gatsma", "Willem de Zwijgerhof 19", "2132NS, HOOFDDORP", "", "", "", "1"
|
|
286
|
+
], ["", "O", "", "", "", "", 101118, "Ras", "Couhornerhoek 43", "1035KP, Amsterdam", "", "", "", "1"
|
|
287
|
+
], ["", "O", "", "", "", "", 101119, "Ras", "Wijenburg 199", "1082VT, Amsterdam", "", "", "", "1"
|
|
288
|
+
], ["", "O", "", "", "", "", 101120, "Captein", "Maria Tesselschadelaan 34", "2135RD, HOOFDDORP", "", "", "", "1"
|
|
289
|
+
], ["", "O", "", "", "", "", 101121, "Hawker", "Hebridenlaan 36", "1060LV, AMSTERDAM", "", "", "", "1"
|
|
290
|
+
], ["", "O", "", "", "", "", 101122, "de Ruiter", "Palissade 18", "2141ML, VIJFHUIZEN NH", "", "", "", "1"
|
|
291
|
+
], ["", "O", "", "", "", "", 101123, "Valster", "Musholm 141", "2133HR, HOOFDDORP", "", "", "", "1"
|
|
292
|
+
], ["", "O", "", "", "", "", 101124, "Breed", "Graanhuis 63", "2144KX, BEINSDORP", "", "", "", "1"
|
|
293
|
+
], ["", "O", "", "", "", "", 101125, "Meijer", "Kwaakhaven 89", "2341NX, OEGSTGEEST", "", "", "", "1"
|
|
294
|
+
], ["", "O", "", "", "", "", 101126, "Kroon", "Zon Bastion 30", "1991PK, VELSERBROEK", "noreply@colijn-it.nl", "", "", "1"
|
|
295
|
+
], ["", "O", "", "", "", "", 101127, "van den Broek", "Heemsteedse Dreef 278", "2102KV, HEEMSTEDE", "", "", "", "1"
|
|
296
|
+
], ["", "O", "", "", "", "", 101128, "Helmig", "Groot Heiligland 17", "2011EN, HAARLEM", "", "", "", "1"
|
|
297
|
+
], ["", "O", "", "", "", "", 101129, "van Kleef", "Albert Schweitzerlaan 166", "2037RW, HAARLEM", "", "", "", "1"
|
|
298
|
+
], ["", "O", "", "", "", "", 101130, "Musch", "Oliemolenplaats 4", "2034KM, HAARLEM", "", "", "", "1"
|
|
299
|
+
], ["", "O", "", "", "", "", 101131, "Kuiper", "Trompstraat 109", "2014BG, HAARLEM", "", "", "", "1"
|
|
300
|
+
], ["", "O", "", "", "", "", 101132, "Gieles", "Platanenlaan 81", "2061TS, BLOEMENDAAL ZH", "", "", "", "1"
|
|
301
|
+
], ["", "O", "", "", "", "", 101133, "Grin", "Delftse Jaagpad 14", "2324AA, LEIDEN", "", "", "", "1"
|
|
302
|
+
], ["", "O", "", "", "", "", 101134, "Rozendaal", "Glipperdreef 80", "2104WL, HEEMSTEDE", "", "", "", "1"
|
|
303
|
+
], ["", "O", "", "", "", "", 101135, "Overwater", "Annie Romeinstraat 64", "2135SJ, HOOFDDORP", "", "", "", "1"
|
|
304
|
+
], ["", "O", "", "", "", "", 101136, "Noordoven", "V.d. Duijn van Maasdamstraat 17", "2242TH, WASSENAAR", "", "", "", "1"
|
|
305
|
+
], ["", "O", "", "", "", "", 101137, "de Heer", "Lommerlustlaan 63", "2012BZ, HAARLEM", "", "", "", "1"
|
|
306
|
+
], ["", "O", "", "", "", "", 101138, "Mul", "Noorderstationsweg 11", "2061HG, Bloemendaal", "", "", "", "1"
|
|
307
|
+
], ["", "O", "", "", "", "", 101139, "Kemp", "Oude Spaarneweg 36", "2142EA, CRUQUIUS", "", "", "", "1"
|
|
308
|
+
], ["", "O", "", "", "", "", 101140, "v.d. Mark", "Bloembinderspark 105", "2161XR, LISSE", "", "", "", "1"
|
|
309
|
+
], ["", "O", "", "", "", "", 101141, "Luitjes", "Willemsbos 45", "2134EA, Hoofddorp", "", "", "", "1"
|
|
310
|
+
], ["", "O", "", "", "", "", 101142, "van Beek", "Nassaupark 67", "2161KL, LISSE", "", "", "", "1"
|
|
311
|
+
], ["", "O", "", "", "", "", 101143, "van den Berg", "Graanhuis 35", "2144KX, BEINSDORP", "", "", "", "1"
|
|
312
|
+
], ["", "O", "", "", "", "", 101144, "de Vries", "Kwaakhoven 89", "2341NX, OEGSTGEEST", "noreply@colijn-it.nl", "", "", "1"
|
|
313
|
+
], ["", "O", "", "", "", "", 101145, "Bozzolini", "Berkenlaan 24", "1161EL, ZWANENBURG", "noreply@colijn-it.nl", "", "", "1"
|
|
314
|
+
], ["", "O", "", "", "", "", 101146, "Blade Airospace", "Delftsejaagpad 32", "2324AA, LEIDEN", "", "", "", "1"
|
|
315
|
+
], ["", "O", "", "", "", "", 101147, "van Nieuwland", "Marnixstraat 75", "2023RB, HAARLEM", "", "", "", "1"
|
|
316
|
+
], ["", "O", "", "", "", "", 101148, "Snoeren", "Wijtvliet 8", "2134WD, HOOFDDORP", "", "", "", "1"
|
|
317
|
+
], ["", "O", "", "", "", "", 101149, "Rus", "Muiderbos 192", "2134SX, Hoofddorp", "", "", "", "1"
|
|
318
|
+
], ["", "O", "", "", "", "", 101150, "Hoogendoorn", "Ruighoekerweg 5", "2211ZG, NOORDWIJKERHOUT", "noreply@colijn-it.nl", "06-53603342", "", "1"
|
|
319
|
+
], ["", "O", "", "", "", "", 101151, "van Laar", "Spieringweg ", "?????, Vijfhuizen", "", "", "", "1"
|
|
320
|
+
], ["", "O", "", "", "", "", 101152, "Hoogewerf", "Laan van aida 39", "2152GH, Nieuw vennep", "", "", "", "1"
|
|
321
|
+
], ["", "O", "", "", "", "", 101153, "Kabel", "Viktor v. vrieslandstr. 45", "2025LT, Haarlem", "noreply@colijn-it.nl", "", "", "1"
|
|
322
|
+
], ["", "O", "", "", "", "", 101154, "Amrani", "Monte perdido 122", "1060PB, Amsterdam", "", "", "", "1"
|
|
323
|
+
], ["", "O", "", "", "", "", 101155, "Hart", "Beatrixplantsoen 70", "2104SV, HEEMSTEDE", "", "", "", "1"
|
|
324
|
+
], ["", "O", "", "", "", "", 101156, "Collet", "Willem Pijperlaan 4", "2102XP, HEEMSTEDE", "", "", "", "1"
|
|
325
|
+
], ["", "O", "", "", "", "", 101157, "Vorstermans", "Korianderlaan 68", "1187EE, AMSTELVEEN", "noreply@colijn-it.nl", "", "", "1"
|
|
326
|
+
], ["", "O", "", "", "", "", 101158, "Elseman", "Wouda 16", "2181WC, HILLEGOM", "noreply@colijn-it.nl", "", "", "1"
|
|
327
|
+
], ["", "O", "", "", "", "", 101159, "van Beek", "Nassaupark 67", "2161KL, LISSE", "", "", "", "1"
|
|
328
|
+
], ["", "O", "", "", "", "", 101160, "Witte", "Vrijburglaan 35", "2051LB, Overveen", "", "", "", "1"
|
|
329
|
+
], ["", "O", "", "", "", "", 101161, "van der Steen", "Linnaeusstraat 99", "1093EL, Amsterdam", "", "", "", "1"
|
|
330
|
+
], ["", "O", "", "", "", "", 101162, "Langveld", "Leidsevaart 6", "2121AX, BENNEBROEK", "", "", "", "1"
|
|
331
|
+
], ["", "O", "", "", "", "", 101163, "Janssen", "Aalsmeerderweg 662", "1437EJ, ROZENBURG NH", "", "", "", "1"
|
|
332
|
+
], ["", "O", "", "", "", "", 101164, "Kemp", "Lucas v. leijdenlaan 14", "2102AZ, Heemstede", "", "", "", "1"
|
|
333
|
+
], ["", "O", "", "", "", "", 101165, "de Hoog", "Edisonstraat 135", "1433KJ, KUDELSTAART", "", "", "", "1"
|
|
334
|
+
], ["", "O", "", "", "", "", 101166, "Broekema", "Meerewijck 77", "2451XC, LEIMUIDEN", "", "", "", "1"
|
|
335
|
+
], ["", "O", "", "", "", "", 101167, "Nederpel", "Beethovenlaan 72", "2215SH, Voorhout", "", "", "", "1"
|
|
336
|
+
], ["", "O", "", "", "", "", 101168, "Alkemade", "Zilkerduinweg 173", "2191AK, DE ZILK", "", "", "", "1"
|
|
337
|
+
], ["", "O", "", "", "", "", 101169, "Zandbergen", "Vivaldisingel 107", "2151GP, Nieuw vennep", "", "", "", "1"
|
|
338
|
+
], ["", "O", "", "", "", "", 101170, "de Ru", "Muur 8", "1422PJ, Uithoorn", "", "", "", "1"
|
|
339
|
+
], ["", "O", "", "", "", "", 101171, "Telman", "Dollardpad 20", "1025XG, AMSTERDAM", "", "", "", "1"
|
|
340
|
+
], ["", "O", "", "", "", "", 101172, "Fransen", "Kortenaerstraat 28", "2121XK, BENNEBROEK", "", "", "", "1"
|
|
341
|
+
], ["", "O", "", "", "", "", 101173, "Jacobs", "Spieringweg 801", "2142ED, CRUQUIUS", "noreply@colijn-it.nl", "", "", "1"
|
|
342
|
+
], ["", "O", "", "", "", "", 101174, "de Klerk", "Van der hoopstraat 63", "2523HE, Den haag", "", "", "", "1"
|
|
343
|
+
], ["", "O", "", "", "", "", 101175, "Janmaat", "Leegwaterstraat 43", "1433BK, Kudelstaart", "", "", "", "1"
|
|
344
|
+
], ["", "O", "", "", "", "", 101176, "de Lange", "Populierenlaan 289", "1161SN, Zwanenburg", "", "", "", "1"
|
|
345
|
+
], ["", "O", "", "", "", "", 101177, "Piet Tinholt", "Gein Noord 66", "1391HX, ABCOUDE", "pietjepuk@colijn-it.nl", "", "", "1"
|
|
346
|
+
], ["", "O", "", "", "", "", 101179, "Koycu", "Hoofdweg 606", "2132MJ, Hoofddorp", "", "", "", "1"
|
|
347
|
+
], ["", "O", "", "", "", "", 101180, "van Koningsveld", "Henry didonweg 59", "2134DG, Hoofddorp", "", "", "", "1"
|
|
348
|
+
], ["", "O", "", "", "", "", 101181, "Meijer", "M. Vaumontlaan 188", "2101EJ, HEEMSTEDE", "", "", "", "1"
|
|
349
|
+
], ["", "O", "", "", "", "", 101182, "Varenhorst", "Seevank 220", "1161RV, ZWANENBURG", "", "", "", "1"
|
|
350
|
+
], ["", "O", "", "", "", "", 101183, "van Opzeeland", "Nieuwe Weg 6", "2031LL, HAARLEM", "", "", "", "1"
|
|
351
|
+
], ["", "O", "", "", "", "", 101184, "Verhaar", "Klarenbeekstraat 34", "2013ZG, Haarlem", "", "", "", "1"
|
|
352
|
+
], ["", "O", "", "", "", "", 101185, "Opdam", "Witte de Withlaan 1", "2121XE, BENNEBROEK", "", "", "", "1"
|
|
353
|
+
], ["", "O", "", "", "", "", 101186, "Ung", "Scheepmakerpassage 61", "3011VH, ROTTERDAM", "", "", "", "1"
|
|
354
|
+
], ["", "O", "", "", "", "", 101187, "Kramer", "M. de Ruijterstraat 50", "2182XP, HILLEGOM", "", "", "", "1"
|
|
355
|
+
], ["", "O", "", "", "", "", 101188, "Verweij-pieterman", "Duin en Vaart 19", "2105MJ, HEEMSTEDE", "", "", "", "1"
|
|
356
|
+
], ["", "O", "", "", "", "", 101189, "van Lunenburg", "Duin en Vaart 15", "2105MJ, HEEMSTEDE", "", "", "", "1"
|
|
357
|
+
], ["", "O", "", "", "", "", 101190, "Leendertse", "Petersweg 1", "7475 NG, MARKELO", "", "", "", "1"
|
|
358
|
+
], ["", "O", "", "", "", "", 101191, "Monster", "Rietkraag 29", "2144KA, BEINSDORP", "noreply@colijn-it.nl", "", "", "1"
|
|
359
|
+
], ["", "O", "", "", "", "", 101192, "Zwetsloot", "Rijnlaan 115", "2105XL, Heemstede", "", "", "", "1"
|
|
360
|
+
], ["", "O", "", "", "", "", 101193, "Huurman", "Johan wagenaarlaan 17", "2132KE, Hoofddorp", "", "", "", "1"
|
|
361
|
+
], ["", "O", "", "", "", "", 101194, "Broekhof", "Maandagse Wetering 42", "2211WV, NOORDWIJKERHOUT", "", "", "", "1"
|
|
362
|
+
], ["", "O", "", "", "", "", 101195, "Ham", "Seoullaan 27", "2152KK, NIEUW VENNEP", "", "", "", "1"
|
|
363
|
+
], ["", "O", "", "", "", "", 101197, "Beck", "IJmuiderstraatweg 39", "1971LC, IJMUIDEN", "", "", "", "1"
|
|
364
|
+
], ["", "O", "", "", "", "", 101198, "van Oerle", "Einthovenlaan 10", "2105TJ, HEEMSTEDE", "noreply@colijn-it.nl", "06-22962919", "", "1"
|
|
365
|
+
], ["", "O", "", "", "", "", 101199, "Verniers", "Boeierstraat 163", "1443EH, PURMEREND", "", "", "", "1"
|
|
366
|
+
], ["", "O", "", "", "", "", 101200, "R.M.A. Bouw", "Weerdestein 82", "1083GE, AMSTERDAM", "", "", "", "1"
|
|
367
|
+
], ["", "O", "", "", "", "", 101201, "Wessel", "Vromaatweg 57", "1991RW, Velserbroek", "", "", "", "1"
|
|
368
|
+
], ["", "O", "", "", "", "", 101202, "Kool", "De Genestettstraat 1", "2041PL, ZANDVOORT", "", "", "", "1"
|
|
369
|
+
], ["", "O", "", "", "", "", 101203, "Binderisingh", "Nienke v. Hichtumstraat 9", "1064MH, AMSTERDAM", "", "", "", "1"
|
|
370
|
+
], ["", "O", "", "", "", "", 101204, "Boer", "Fazantenlaan 23", "2121EA, BENNEBROEK", "", "", "", "1"
|
|
371
|
+
], ["", "O", "", "", "", "", 101205, "de Graauw", "Koeteburg 8", "1435HN, RIJSENHOUT", "", "", "", "1"
|
|
372
|
+
], ["", "O", "", "", "", "", 101206, "van den Heuvel", "Winterpark 28", "2152HA, NIEUW VENNEP", "", "", "", "1"
|
|
373
|
+
], ["", "O", "", "", "", "", 101207, "Keijzer", "Lijsterbeslaan 25", "2181CK, Hillegom", "", "", "", "1"
|
|
374
|
+
], ["", "O", "", "", "", "", 101208, "Rudolph", "Waterman 47", "2163BB, Lisse", "", "", "", "1"
|
|
375
|
+
], ["", "O", "", "", "", "", 101210, "van Wijk", "Chr. Huijgensstraat 16", "1171XM, BADHOEVEDORP", "", "", "", "1"
|
|
376
|
+
], ["", "O", "", "", "", "", 101211, "Summers", "Timorstraat 27", "2103TT, Heemstede", "", "", "", "1"
|
|
377
|
+
], ["", "O", "", "", "", "", 101212, "Vink", "Populierenstraat 29", "2371SE, Roelofarendsveen", "", "", "", "1"
|
|
378
|
+
], ["", "O", "", "", "", "", 101214, "Warmerdam", "Uilenstede 114", "1183AN, Amstelveen", "", "", "", "1"
|
|
379
|
+
], ["", "O", "", "", "", "", 101215, "Brugman", "H. van der Meijdreef 68", "2492JG, DEN HAAG", "", "", "", "1"
|
|
380
|
+
], ["", "O", "", "", "", "", 101216, "Heuving", "Wintererf 8", "2408NH, ALPHEN AAN DEN RIJN", "", "", "", "1"
|
|
381
|
+
], ["", "O", "", "", "", "", 101217, "Adriaansen", "Blokhuis 16", "2141NA, VIJFHUIZEN NH", "", "", "", "1"
|
|
382
|
+
], ["", "O", "", "", "", "", 101219, "Woltman", "Stresemannlaan 7", "2037TA, HAARLEM", "", "", "", "1"
|
|
383
|
+
], ["", "O", "", "", "", "", 101221, "Kwint", "Maria Rutgerslaan 61", "2135PB, HOOFDDORP", "", "", "", "1"
|
|
384
|
+
], ["", "O", "", "", "", "", 101222, "Roland", "Duikerstraat 46", "1432JW, AALSMEER", "", "", "", "1"
|
|
385
|
+
], ["", "O", "", "", "", "", 101223, "Wassenaar", "Oranjelaan 97", "2161KC, Lisse", "", "", "", "1"
|
|
386
|
+
], ["", "O", "", "", "", "", 101224, "Mulder", "Bernadottelaan 138", "2037GV, HAARLEM", "", "", "", "1"
|
|
387
|
+
], ["", "O", "", "", "", "", 101225, "Rodrigues de Mercado", "Maria Rutgerslaan 85", "2135PB, HOOFDDORP", "noreply@colijn-it.nl", "06-29375255", "", "1"
|
|
388
|
+
], ["", "O", "", "", "", "", 101228, "Veldman", "Habanera 85", "2152SK, NIEUW VENNEP", "", "", "", "1"
|
|
389
|
+
], ["", "O", "", "", "", "", 101229, "de Wolf", "Snoeklaan 9", "2215XC, Voorhout", "", "", "", "1"
|
|
390
|
+
], ["", "O", "", "", "", "", 101230, "Melkert", "Klinkenbergstraat 175", "2136AG, ZWAANSHOEK", "", "", "", "1"
|
|
391
|
+
], ["", "O", "", "", "", "", 101231, "van der Meer", "Sotaweg 96", "2371GG, ROELOFARENDSVEEN", "", "", "", "1"
|
|
392
|
+
], ["", "O", "", "", "", "", 101233, "Vogelzang", "De Heining 19", "1161AC, ZWANENBURG", "", "", "", "1"
|
|
393
|
+
], ["", "O", "", "", "", "", 101234, "Knies", "Laan v. nieuw oosteinde 59", "2274EA, Voorburg", "", "", "", "1"
|
|
394
|
+
], ["", "O", "", "", "", "", 101235, "van den Kroonenberg", "Bernadottelaan 281", "2037GR, Haarlem", "", "", "", "1"
|
|
395
|
+
], ["", "O", "", "", "", "", 101236, "Stolp", "Rode Lindalaan 33", "2152PM, NIEUW VENNEP", "", "", "", "1"
|
|
396
|
+
], ["", "O", "", "", "", "", 101237, "Vogelpoel", "Prinsessenhof 40", "2104AR, HEEMSTEDE", "", "", "", "1"
|
|
397
|
+
], ["", "O", "", "", "", "", 101238, "van Velzen", "Emmaplein 22", "2014VA, HAARLEM", "", "", "", "1"
|
|
398
|
+
], ["", "O", "", "", "", "", 101239, "van der Poll", "Vincent van Goghsingel 19", "2182LM, HILLEGOM", "", "06-30603752", "", "1"
|
|
399
|
+
], ["", "O", "", "", "", "", 101240, "van den Ende", "Zadelmaker 81", "2152LN, NIEUW VENNEP", "", "", "", "1"
|
|
400
|
+
], ["", "O", "", "", "", "", 101241, "Nuijten", "Bosb. Toussaintlaan 72", "2103SN, HEEMSTEDE", "", "", "", "1"
|
|
401
|
+
], ["", "O", "", "", "", "", 101242, "van Giersthove", "Graaf Florisstraat 9", "2274SV, VOORBURG", "noreply@colijn-it.nl", "", "", "1"
|
|
402
|
+
], ["", "O", "", "", "", "", 101243, "Brust", "R. Vosstraat 8", "1991RN, VELSERBROEK", "", "", "", "1"
|
|
403
|
+
], ["", "O", "", "", "", "", 101244, "Cardol", "Otellolaan 26", "2152JL, NIEUW VENNEP", "noreply@colijn-it.nl", "", "", "1"
|
|
404
|
+
], ["", "O", "", "", "", "", 101245, "Oulmourif", "H. Mercierstraat 8", "1066AL, AMSTERDAM", "", "", "", "1"
|
|
405
|
+
], ["", "O", "", "", "", "", 101246, "de Leeuw", "Amestelle 193", "1161BA, ZWANENBURG", "", "", "", "1"
|
|
406
|
+
], ["", "O", "", "", "", "", 101247, "Loos", "'t Hofje 4", "2377AZ, OUDE WETERING", "", "", "", "1"
|
|
407
|
+
], ["", "O", "", "", "", "", 101248, "van Ee", "Taniaburg 75", "2135BW, Hoofddorp", "", "", "", "1"
|
|
408
|
+
], ["", "O", "", "", "", "", 101249, "van der Sloot", "Rijksstraatweg 380", "2025DS, HAARLEM", "noreply@colijn-it.nl", "06-16446145", "", "1"
|
|
409
|
+
], ["", "O", "", "", "", "", 101250, "Haverkamp", "Geerestein 59", "2403PH, ALPHEN AAN DEN RIJN", "noreply@colijn-it.nl", "", "", "1"
|
|
410
|
+
], ["", "O", "", "", "", "", 101251, "v.d. Slot", "Weidemolen 18", "2211PW, NOORDWIJKERHOUT", "", "", "", "1"
|
|
411
|
+
], ["", "O", "", "", "", "", 101252, "Bakker", "Noorderakerweg 59", "1069LN, Amsterdam", "", "", "", "1"
|
|
412
|
+
], ["", "O", "", "", "", "", 101253, "Appelboom", "Lodewijk v.Deijssellaan 254", "1985CV, DRIEHUIS NH", "", "", "", "1"
|
|
413
|
+
], ["", "O", "", "", "", "", 101254, "van Donselaar", "Nieuwe meerdijk 26", "1171NB, Badhoevedorp", "", "", "", "1"
|
|
414
|
+
], ["", "O", "", "", "", "", 101255, "Louis", "Bernadottestraat 3", "2131SM, HOOFDDORP", "noreply@colijn-it.nl", "", "", "1"
|
|
415
|
+
], ["", "O", "", "", "", "", 101256, "van der Want", "Teylerplein 29", "2032NA, Haarlem", "", "", "", "1"
|
|
416
|
+
], ["", "O", "", "", "", "", 101257, "Boeree", "Poelgeest 56", "2036HM, HAARLEM", "noreply@colijn-it.nl", "06-44300429", "", "1"
|
|
417
|
+
], ["", "O", "", "", "", "", 101258, "Vink", "Waterlelie 138", "2371HN, Roelofarendsveen", "", "", "", "1"
|
|
418
|
+
], ["", "O", "", "", "", "", 101259, "Praktijk den Ilp", "Den Ilp 99", "1127PJ, DEN ILP", "noreply@colijn-it.nl", "020-4825396", "", "1"
|
|
419
|
+
], ["", "O", "", "", "", "", 101260, "Bosma", "L. da. vinciplein 25", "2037RR, Haarlem", "", "", "", "1"
|
|
420
|
+
], ["", "O", "", "", "", "", 101261, "Ownsu", "Chestertonlaan 209", "1102XX, AMSTERDAM", "", "", "", "1"
|
|
421
|
+
], ["", "O", "", "", "", "", 101262, "Clelland", "Etta Palmstraat 87", "2135LC, HOOFDDORP", "", "", "", "1"
|
|
422
|
+
], ["", "O", "", "", "", "", 101263, "Dias", "Stationsstraat 54", "1421AA, UITHOORN", "", "", "", "1"
|
|
423
|
+
], ["", "O", "", "", "", "", 101266, "Verschuren", "C. Bruningsstraat 6", "2064XG, SPAARNDAM", "", "", "", "1"
|
|
424
|
+
], ["", "O", "", "", "", "", 101267, "van Egmond", "Margaretstraat 55", "2331MR, LEIDEN", "", "", "", "1"
|
|
425
|
+
], ["", "O", "", "", "", "", 101268, "Biemolt", "Sandenburg 99", "2036PC, HAARLEM", "", "", "", "1"
|
|
426
|
+
], ["", "O", "", "", "", "", 101269, "v.d. Heijde Meijer", "Molukkenstraat 112", "1094BT, Amsterdam", "", "", "", "1"
|
|
427
|
+
], ["", "O", "", "", "", "", 101270, "Langendijk", "Roosterbos 53", "2134EW, HOOFDDORP", "", "", "", "1"
|
|
428
|
+
], ["", "O", "", "", "", "", 101271, "Koper", "Ravensbos 101", "2134TR, HOOFDDORP", "", "", "", "1"
|
|
429
|
+
], ["", "O", "", "", "", "", 101272, "Beuken", "H. Vinkhof 9", "2202XH, NOORDWIJK ZH", "", "", "", "1"
|
|
430
|
+
], ["", "O", "", "", "", "", 101273, "v. Woestenburg", "Manegelaan 54", "2131XB, HOOFDDORP", "", "", "", "1"
|
|
431
|
+
], ["", "O", "", "", "", "", 101274, "Gouw", "Alfons Ariensstraat 3", "2037VJ, HAARLEM", "", "", "", "1"
|
|
432
|
+
], ["", "O", "", "", "", "", 101275, "Schaik", "Duinbeek 74", "2134VT, HOOFDDORP", "", "", "", "1"
|
|
433
|
+
], ["", "O", "", "", "", "", 101276, "Gieling", "Hoogwakersbosstraat 49", "2202AW, NOORDWIJK ZH", "", "", "", "1"
|
|
434
|
+
], ["", "O", "", "", "", "", 101277, "de Boer", "Betlehemlaan 22", "2181HN, HILLEGOM", "", "", "", "1"
|
|
435
|
+
], ["", "O", "", "", "", "", 101278, "Heijligers", "Gen. spoorlaan 51", "2025NA, Haarlem", "", "06-50222333", "", "1"
|
|
436
|
+
], ["", "O", "", "", "", "", 101279, "den Os", "Willem de merodelaan 13", "2343KC, OEGSTGEEST", "", "", "", "1"
|
|
437
|
+
], ["", "O", "", "", "", "", 101280, "Funcke", "Popkensburg 10", "2181LD, Hillegom", "", "", "", "1"
|
|
438
|
+
], ["", "O", "", "", "", "", 101281, "Wesseling", "Zichtweg 6", "2151WH, NIEUW VENNEP", "", "", "", "1"
|
|
439
|
+
], ["", "O", "", "", "", "", 101282, "Hilberink", "Nettelhorst 100", "2402LS, ALPHEN AAN DEN RIJN", "", "", "", "1"
|
|
440
|
+
], ["", "O", "", "", "", "", 101283, "van der Klauw", "W.p. speelmanweg 43", "2441CB, NIEUWVEEN", "", "", "", "1"
|
|
441
|
+
], ["", "O", "", "", "", "", 101284, "Hekking", "Obistraat 75", "2022CH, HAARLEM", "noreply@colijn-it.nl", "", "", "1"
|
|
442
|
+
], ["", "O", "", "", "", "", 101285, "van Wijk", "Paus leostraat 11", "2033KA, HAARLEM", "", "", "", "1"
|
|
443
|
+
], ["", "O", "", "", "", "", 101286, "Cassee", "Zwaluwstraat 54", "2025VR, HAARLEM", "noreply@colijn-it.nl", "", "", "1"
|
|
444
|
+
], ["", "O", "", "", "", "", 101287, "van der Engh", "Rijksstraatweg 14", "2022DA, HAARLEM", "", "", "", "1"
|
|
445
|
+
], ["", "O", "", "", "", "", 101288, "Duindam", "Dr. Neijestraat 57", "2064XB, SPAARNDAM", "noreply@colijn-it.nl", "0647482665", "", "1"
|
|
446
|
+
], ["", "O", "", "", "", "", 101289, "de Greef", "Muntstraat 47", "2165VD, LISSERBROEK", "", "", "", "1"
|
|
447
|
+
], ["", "O", "", "", "", "", 101290, "Hogenes", "Sperwerstraat 26", "2162GD, Lisse", "noreply@colijn-it.nl", "", "", "1"
|
|
448
|
+
], ["", "O", "", "", "", "", 101291, "Adriaansen", "Ijweg 1095", "2133MH, Hoofddorp", "", "", "", "1"
|
|
449
|
+
], ["", "O", "", "", "", "", 101292, "Blokzijl", "Van Leeuwenhoekstraat 17", "1433BM, KUDELSTAART", "", "", "", "1"
|
|
450
|
+
], ["", "O", "", "", "", "", 101293, "Groeneveld", "Colonnade 11", "2134AJ, HOOFDDORP", "", "", "", "1"
|
|
451
|
+
], ["", "O", "", "", "", "", 101294, "van Hoorn", "Deurloostraat 63", "1078HV, Amsterdam", "", "", "", "1"
|
|
452
|
+
], ["", "O", "", "", "", "", 101295, "Kuijs", "Boschweg ", ", Akersloot", "", "", "", "1"
|
|
453
|
+
], ["", "O", "", "", "", "", 101296, "Bovelander", "Essenlaan 95", "1161EC, ZWANENBURG", "", "", "", "1"
|
|
454
|
+
], ["", "O", "", "", "", "", 101297, "Vermeer", "Seoellaan 40", "2152KK, Nieuw vennep", "", "", "", "1"
|
|
455
|
+
], ["", "O", "", "", "", "", 101298, "Geurds", "Diepenbrockstraat 64", "1381EP, Weesp", "", "", "", "1"
|
|
456
|
+
], ["", "O", "", "", "", "", 101299, "Prast", "Korenbloemlaan 2", "1187EG, AMSTELVEEN", "", "", "", "1"
|
|
457
|
+
], ["", "O", "", "", "", "", 101300, "van Lent", "Van Keulenstraat 16", "2033GD, HAARLEM", "", "", "", "1"
|
|
458
|
+
], ["", "O", "", "", "", "", 101301, "Allis", "Prof. Zeemanstraat 59", "2041CN, ZANDVOORT", "", "", "", "1"
|
|
459
|
+
], ["", "O", "", "", "", "", 101302, "Reinerie", "Lopikhof 1", "1108GH, AMSTERDAM", "", "", "", "1"
|
|
460
|
+
], ["", "O", "", "", "", "", 101303, "Timms", "Einsteinlaan 105", "1171VR, BADHOEVEDORP", "", "", "", "1"
|
|
461
|
+
], ["", "O", "", "", "", "", 101304, "de Vlieger", "Hornweg 203", "1432GJ, AALSMEER", "", "", "", "1"
|
|
462
|
+
], ["", "O", "", "", "", "", 101305, "Wassenaar", "Oranjelaan 97", "2161KC, Lisse", "", "", "", "1"
|
|
463
|
+
], ["", "O", "", "", "", "", 101306, "Kos", "Javalaan 35", "2103VD, HEEMSTEDE", "", "", "", "1"
|
|
464
|
+
], ["", "O", "", "", "", "", 101307, "van der Putten", "Reitzstraat 17", "2021TM, HAARLEM", "", "", "", "1"
|
|
465
|
+
], ["", "O", "", "", "", "", 101308, "van de Jagt", "De Zevenhoeven 76", "1963SH, HEEMSKERK", "", "", "", "1"
|
|
466
|
+
], ["", "O", "", "", "", "", 101309, "Post", "Lindholm 6", "2133CV, HOOFDDORP", "", "", "", "1"
|
|
467
|
+
], ["", "O", "", "", "", "", 101310, "Kaptijn", "Hortensialaan 10", "2106CH, HEEMSTEDE", "", "", "", "1"
|
|
468
|
+
], ["", "O", "", "", "", "", 101311, "Bus", "Carolina mc Gillavrylaan 316", "1098XB, AMSTERDAM", "", "", "", "1"
|
|
469
|
+
], ["", "O", "", "", "", "", 101312, "Arensman", "Schoolstraat 36", "2151AB, Nieuw vennep", "", "", "", "1"
|
|
470
|
+
], ["", "O", "", "", "", "", 101313, "Postma", "Lakenkopersweg 20", "1383CS, WEESP", "noreply@colijn-it.nl", "", "", "1"
|
|
471
|
+
], ["", "O", "", "", "", "", 101314, "Pater", "Duinweg 107", "2204AT, NOORDWIJK ZH", "noreply@colijn-it.nl", "06-28592267", "", "1"
|
|
472
|
+
], ["", "O", "", "", "", "", 101315, "Hekker", "Hoekstraat 24", "2172SG, SASSENHEIM", "", "", "", "1"
|
|
473
|
+
], ["", "O", "", "", "", "", 101316, "Hamerling", "Annie Romeinstraat 72", "2135SJ, HOOFDDORP", "", "", "", "1"
|
|
474
|
+
], ["", "O", "", "", "", "", 101317, "Hosein", "Waddenstraat 787", "2036LX, HAARLEM", "", "020-6492096", "", "1"
|
|
475
|
+
], ["", "O", "", "", "", "", 101318, "Ippel", "Kagerdreef 13", "2172HG, SASSENHEIM", "", "", "", "1"
|
|
476
|
+
], ["", "O", "", "", "", "", 101319, "van Ee", "Taniaburg 75", "2135BW, HOOFDDORP", "", "", "", "1"
|
|
477
|
+
], ["", "O", "", "", "", "", 101320, "Jacobs", "Betsy Perkstraat 40", "2135HN, HOOFDDORP", "", "", "", "1"
|
|
478
|
+
], ["", "O", "", "", "", "", 101321, "Lieverse", "Langeraarseweg 120", "2461CM, TER AAR", "", "", "", "1"
|
|
479
|
+
], ["", "O", "", "", "", "", 101322, "v.d. Broek", "Watergang 27", "2377BV, OUDE WETERING", "", "", "", "1"
|
|
480
|
+
], ["", "O", "", "", "", "", 101323, "Reemnet", "Zocherstraat 27", "2021DG, HAARLEM", "", "", "", "1"
|
|
481
|
+
], ["", "O", "", "", "", "", 101324, "Kaplan", "Westermanstraat 10", "2035RZ, Haarlem", "", "", "", "1"
|
|
482
|
+
], ["", "O", "", "", "", "", 101325, "Ham", "Stadhouderspoort 41", "2152RV, Nieuw vennep", "", "", "", "1"
|
|
483
|
+
], ["", "O", "", "", "", "", 101326, "Breeuwer", "Thoornpolder 58", "2134WN, HOOFDDORP", "noreply@colijn-it.nl", "", "", "1"
|
|
484
|
+
], ["", "O", "", "", "", "", 101327, "Faber", "Olieslagerslaan 26", "2012EZ, Haarlem", "", "", "", "1"
|
|
485
|
+
], ["", "O", "", "", "", "", 101328, "van Gils", "Venusstraat 18", "1431XE, AALSMEER", "", "", "", "1"
|
|
486
|
+
], ["", "O", "", "", "", "", 101329, "Burg", "Nicolaas Beetslaan 102", "1422AV, UITHOORN", "", "", "", "1"
|
|
487
|
+
], ["", "O", "", "", "", "", 101330, "van der Kwaak", "Kartinistraat 91", "2033CR, HAARLEM", "", "", "", "1"
|
|
488
|
+
], ["", "O", "", "", "", "", 101331, "van Gelder", "Groot Abelenbos 22", "1974TC, IJMUIDEN", "", "", "", "1"
|
|
489
|
+
], ["", "O", "", "", "", "", 101332, "de Beunje", "Bloembinderspark 103", "2161XR, LISSE", "", "", "", "1"
|
|
490
|
+
], ["", "O", "", "", "", "", 101333, "de Wit", "Zichtweg 83", "2151WD, NIEUW VENNEP", "", "", "", "1"
|
|
491
|
+
], ["", "O", "", "", "", "", 101334, "Ostendorf", "Schoolstraat 9", "2042VA, ZANDVOORT", "", "", "", "1"
|
|
492
|
+
], ["", "O", "", "", "", "", 101335, "Winnubst", "Sterrebosstraat 64", "2013PD, Haarlem", "", "", "", "1"
|
|
493
|
+
], ["", "O", "", "", "", "", 101336, "Bersee-Roelofs", "Poldermeester 304", "1191VB, OUDERKERK AAN DE AMSTEL", "", "", "", "1"
|
|
494
|
+
], ["", "O", "", "", "", "", 101337, "Holleman", "Leharstraat 18", "2162AC, Lisse", "", "", "", "1"
|
|
495
|
+
], ["", "O", "", "", "", "", 101338, "Leegwater", "Luxemburglaan 121", "1946SB, Beverwijk", "", "", "", "1"
|
|
496
|
+
], ["", "O", "", "", "", "", 101339, "Amrani", "Johan Hofmanstraat 322", "1069KE, AMSTERDAM", "", "", "", "1"
|
|
497
|
+
], ["", "O", "", "", "", "", 101340, "van Kooten", "Willem Klooslaan 3", "1422JV, UITHOORN", "", "", "", "1"
|
|
498
|
+
], ["", "O", "", "", "", "", 101341, "Grimbergen", "Driehuizerpark 28", "2163KV, LISSE", "", "", "", "1"
|
|
499
|
+
], ["", "O", "", "", "", "", 101342, "Schumacher", "Olmenlaan 131", "1161JV, ZWANENBURG", "", "", "", "1"
|
|
500
|
+
], ["", "O", "", "", "", "", 101343, "van Eeden", "Leeweg 3", "2211XZ, NOORDWIJKERHOUT", "", "", "", "1"
|
|
501
|
+
], ["", "O", "", "", "", "", 101344, "de Herder", "Valkenburgerlaan 58", "2103AP, Heemstede", "", "", "", "1"
|
|
502
|
+
], ["", "O", "", "", "", "", 101345, "de Haas", "Maredijk 137", "2316VX, Leiden", "", "", "", "1"
|
|
503
|
+
], ["", "O", "", "", "", "", 101346, "Weij", "Jan van Zutphenstraat 159", "1069RR, AMSTERDAM", "", "", "", "1"
|
|
504
|
+
], ["", "O", "", "", "", "", 101347, "van Asten", "Albert Verweijlaan 40", "1985CG, DRIEHUIS NH", "", "", "", "1"
|
|
505
|
+
], ["", "O", "", "", "", "", 101348, "van Egmond", "V.d. duin v. maasdamln. 8", "2181XD, Hillegom", "", "", "", "1"
|
|
506
|
+
], ["", "O", "", "", "", "", 101349, "Brugman", "H. van der Meijdreef 68", "2492JG, DEN HAAG", "", "", "", "1"
|
|
507
|
+
], ["", "O", "", "", "", "", 101350, "Smit", "Lettenburg 75", "2135DE, HOOFDDORP", "", "", "", "1"
|
|
508
|
+
], ["", "O", "", "", "", "", 101351, "van den Broeck", "Lettenburg 73", "2135DE, HOOFDDORP", "noreply@colijn-it.nl", "", "", "1"
|
|
509
|
+
], ["", "O", "", "", "", "", 101352, "Snoek", "Wimble3donpark 175", "1185XJ, Amstelveen", "", "", "", "1"
|
|
510
|
+
], ["", "O", "", "", "", "", 101353, "Hof", "Steve Bikostraat 166", "2033DW, HAARLEM", "", "", "", "1"
|
|
511
|
+
], ["", "O", "", "", "", "", 101354, "van der Mooren", "Joh. de Bekahof 9", "1065AL, AMSTERDAM", "noreply@colijn-it.nl", "06-22444607", "", "1"
|
|
512
|
+
], ["", "O", "", "", "", "", 101355, "Bos", "Aalsmeerderdijk 463", "1435BN, RIJSENHOUT", "", "", "", "1"
|
|
513
|
+
], ["", "O", "", "", "", "", 101356, "Loerakker", "Grote Buitendijk 164", "1991TE, VELSERBROEK", "", "", "", "1"
|
|
514
|
+
], ["", "O", "", "", "", "", 101357, "Wuntke", "Postbus 104", "2204AC, Noordwijk", "", "", "", "1"
|
|
515
|
+
], ["", "O", "", "", "", "", 101358, "van der Heijden", "Duinlustparkweg 8", "2061LC, Bloemendaal", "", "", "", "1"
|
|
516
|
+
], ["", "O", "", "", "", "", 101360, "Blankevoort", "Hendrik v.d. graaflaan 18", "2061LP, Bloemendaal", "", "", "", "1"
|
|
517
|
+
], ["", "O", "", "", "", "", 101361, "van de Waal", "De Vleijen 41", "2134ZC, HOOFDDORP", "noreply@colijn-it.nl", "", "", "1"
|
|
518
|
+
], ["", "O", "", "", "", "", 101362, "Willems", "Zuid Schalkwijkerweg 52", "2034JJ, HAARLEM", "noreply@colijn-it.nl", "", "", "1"
|
|
519
|
+
], ["", "O", "", "", "", "", 101363, "Freitas - Tome", "Dagpauwoogstraat 6", "1432NG, AALSMEER", "noreply@colijn-it.nl", "", "", "1"
|
|
520
|
+
], ["", "O", "", "", "", "", 101364, "Wijkstra", "Duitslandlaan 54", "2034BD, HAARLEM", "", "", "", "1"
|
|
521
|
+
], ["", "O", "", "", "", "", 101365, "Kok", "Clematislaan 19", "2111BD, AERDENHOUT", "", "", "", "1"
|
|
522
|
+
], ["", "O", "", "", "", "", 101366, "Martens", "Houtmolenstraat 14", "4105XK, Culemborg", "", "", "", "1"
|
|
523
|
+
], ["", "O", "", "", "", "", 101367, "Pronk", "Groene Zoom 3", "1171JA, BADHOEVEDORP", "", "", "", "1"
|
|
524
|
+
], ["", "O", "", "", "", "", 101368, "Bastiaannes", "Sassenheimstraat 32", "1059BM, Amsterdam", "", "", "", "1"
|
|
525
|
+
], ["", "O", "", "", "", "", 101369, "Looij", "Dobbiuslaan 48", "2071DG, SANTPOORT NOORD", "", "", "", "1"
|
|
526
|
+
], ["", "O", "", "", "", "", 101370, "Moes", "Leeuwerik 15", "3641ZT, MIJDRECHT", "", "", "", "1"
|
|
527
|
+
], ["", "O", "", "", "", "", 101371, "Quak", "Binnenweg 6", "2121GX, BENNEBROEK", "", "", "", "1"
|
|
528
|
+
], ["", "O", "", "", "", "", 101372, "Trouwen", "Moskoustraat 26", "2034TZ, HAARLEM", "", "", "", "1"
|
|
529
|
+
], ["", "O", "", "", "", "", 101373, "de Haas", "Meander 37", "2211LW, Noordwijkerhout", "", "", "", "1"
|
|
530
|
+
], ["", "O", "", "", "", "", 101374, "Boot", "V.d. Duin v. Maarsdamlaan 4", "2181XD, HILLEGOM", "", "", "", "1"
|
|
531
|
+
], ["", "O", "", "", "", "", 101375, "Wiese", "Wilgenhorst 63", "2215WT, VOORHOUT", "", "", "", "1"
|
|
532
|
+
], ["", "O", "", "", "", "", 101376, "Borgonjen", "Max euwestraat 5", "6833LG, Arnhem", "", "", "", "1"
|
|
533
|
+
], ["", "O", "", "", "", "", 101377, "Brakel", "Jacob Catslaan 2", "2012PE, HAARLEM", "", "", "", "1"
|
|
534
|
+
], ["", "O", "", "", "", "", 101378, "v.d. Zwet", "Aagje Dekenstraat 28", "2162KH, LISSE", "", "", "", "1"
|
|
535
|
+
], ["", "O", "", "", "", "", 101379, "Wetter", "B. van Suttnerstraat 67", "2131VX, HOOFDDORP", "", "", "", "1"
|
|
536
|
+
], ["", "O", "", "", "", "", 101380, "van Marle", "Rietkraag 36", "2144KC, BEINSDORP", "", "", "", "1"
|
|
537
|
+
], ["", "O", "", "", "", "", 101381, "el Abassi", "Het Breed 737", "1025JA, AMSTERDAM", "", "", "", "1"
|
|
538
|
+
], ["", "O", "", "", "", "", 101382, "van Erp", "Beveland 100", "2036GR, Haarlem", "", "", "", "1"
|
|
539
|
+
], ["", "O", "", "", "", "", 101383, "Rasch", "Amsterdamsevaart 274", "2033AA, HAARLEM", "", "", "", "1"
|
|
540
|
+
], ["", "O", "", "", "", "", 101384, "Reintke", "Rondenburglaan 174", "2135KM, Hoofddorp", "", "", "", "1"
|
|
541
|
+
], ["", "O", "", "", "", "", 101385, "Bakker", "Hoogduinweg 14", "2191BA, De zilk", "", "", "", "1"
|
|
542
|
+
], ["", "O", "", "", "", "", 101386, "Wempe", "Lepelblad 24", "1991KL, VELSERBROEK", "", "", "", "1"
|
|
543
|
+
], ["", "O", "", "", "", "", 101387, "v.d. Velden", "Lisdoddestraat 3", "1433WG, Kudelstaart", "", "", "", "1"
|
|
544
|
+
], ["", "O", "", "", "", "", 101388, "Veltkamp", "Narcissenlaan 15", "2121SJ, BENNEBROEK", "", "", "", "1"
|
|
545
|
+
], ["", "O", "", "", "", "", 101389, "Kroes", "Sinjeur Semeynsstraat 66", "1061GL, AMSTERDAM", "", "", "", "1"
|
|
546
|
+
], ["", "O", "", "", "", "", 101390, "de Graaf", "Graanhuis 10", "2144KX, BEINSDORP", "", "", "", "1"
|
|
547
|
+
], ["", "O", "", "", "", "", 101391, "Sneijers", "Havenkade 53", "1973AK, IJMUIDEN", "", "", "", "1"
|
|
548
|
+
], ["", "O", "", "", "", "", 101392, "Ulehake", "Cornelia de Langestraat 8", "2037NL, HAARLEM", "noreply@colijn-it.nl", "06-70108416", "", "1"
|
|
549
|
+
], ["", "O", "", "", "", "", 101393, "ten Laat", "Kromboomsveld 19", "2041GJ, Zandvoort", "", "", "", "1"
|
|
550
|
+
], ["", "O", "", "", "", "", 101394, "Rijsdijk-ten Caat", "Kromboomsveld 19", "2041GJ, ZANDVOORT", "", "", "", "1"
|
|
551
|
+
], ["", "O", "", "", "", "", 101395, "Drijver", "Reinier Claeszstraat 27", "1972NK, IJMUIDEN", "", "", "", "1"
|
|
552
|
+
], ["", "O", "", "", "", "", 101396, "Karel", "Warwijksepoort 8", "2152RL, NIEUW VENNEP", "", "", "", "1"
|
|
553
|
+
], ["", "O", "", "", "", "", 101397, "ter Heide", "Matsbos 31", "2134NA, Hoofddorp", "", "", "", "1"
|
|
554
|
+
], ["", "O", "", "", "", "", 101398, "Warmerdam", "Glipperweg 94", "2104AM, Heemstede", "", "", "", "1"
|
|
555
|
+
], ["", "O", "", "", "", "", 101399, "Arendsen", "Aetsveld 56", "3645XR, VINKEVEEN", "", "", "", "1"
|
|
556
|
+
], ["", "O", "", "", "", "", 101400, "Koek", "Dietsveld 26", "2025BH, HAARLEM", "", "", "", "1"
|
|
557
|
+
], ["", "O", "", "", "", "", 101401, "Wegewijs", "Blekerstraat 61", "1315AB, ALMERE", "", "", "", "1"
|
|
558
|
+
], ["", "O", "", "", "", "", 101402, "Groeneveld", "Zuiderhoutlaan 1", "2012PJ, HAARLEM", "", "", "", "1"
|
|
559
|
+
], ["", "O", "", "", "", "", 101403, "Jungen", "Friedalaan 40", "1161TN, ZWANENBURG", "", "", "", "1"
|
|
560
|
+
], ["", "O", "", "", "", "", 101404, "v.d. Aar", "Leeghwaterstraat 42", "1433BJ, KUDELSTAART", "", "", "", "1"
|
|
561
|
+
], ["", "O", "", "", "", "", 101405, "Stroo", "L.j.m. Beelstraat 41", "1067WH, AMSTERDAM", "", "", "", "1"
|
|
562
|
+
], ["", "O", "", "", "", "", 101406, "Peeterse", "Beurtschipper 113", "2152LE, Nieuw vennep", "", "", "", "1"
|
|
563
|
+
], ["", "O", "", "", "", "", 101407, "Cornelisse", "Waddenstraat 295", "2036LH, Haarlem", "", "", "", "1"
|
|
564
|
+
], ["", "O", "", "", "", "", 101408, "Zwetsloot", "Schollaan 23", "2121GC, BENNEBROEK", "", "", "", "1"
|
|
565
|
+
], ["", "O", "", "", "", "", 101409, "Anson", "Robert Kochlaan 124", "2035BE, HAARLEM", "", "", "", "1"
|
|
566
|
+
], ["", "O", "", "", "", "", 101410, "Rienks", "Dwerggans 12", "1423RC, UITHOORN", "", "", "", "1"
|
|
567
|
+
], ["", "O", "", "", "", "", 101411, "Kooy", "Salamander 51", "1187BS, AMSTELVEEN", "", "", "", "1"
|
|
568
|
+
], ["", "O", "", "", "", "", 101412, "Schrama", "Dorpsstraat 42", "2152BC, Nieuw vennep", "", "", "", "1"
|
|
569
|
+
], ["", "O", "", "", "", "", 101413, "Groen/Schipper", "Paaldijk 57", "1689WE, ZWAAG", "noreply@colijn-it.nl", "", "", "1"
|
|
570
|
+
], ["", "O", "", "", "", "", 101414, "Timmerman", "Kennemerlaan 188", "1972ET, IJMUIDEN", "", "", "", "1"
|
|
571
|
+
], ["", "O", "", "", "", "", 101415, "Faas", "Zwanenbalg 25", "8303MN, EMMELOORD", "", "", "", "1"
|
|
572
|
+
], ["", "O", "", "", "", "", 101416, "Dutch real estate bv", "Annie Romeinstraat 98", "2135SJ, HOOFDDORP", "", "", "", "1"
|
|
573
|
+
], ["", "O", "", "", "", "", 101417, "Hesp", "Westlandgracht 247", "1059TS, AMSTERDAM", "", "", "", "1"
|
|
574
|
+
], ["", "O", "", "", "", "", 101418, "Telgt", "Tiranaplantsoen 73", "2034TK, Haarlem", "", "", "", "1"
|
|
575
|
+
], ["", "O", "", "", "", "", 101419, "Posno", "Osseland 41", "1991CW, Velserbroek", "", "", "", "1"
|
|
576
|
+
], ["", "O", "", "", "", "", 101420, "Berkhout", "Engelplein 17", "2161CL, Lissegom", "", "06-43238431", "", "1"
|
|
577
|
+
], ["", "O", "", "", "", "", 101421, "van Eelen", "Granidastraat 19", "2026SL, HAARLEM", "", "", "", "1"
|
|
578
|
+
], ["", "O", "", "", "", "", 101422, "van Duijn", "Torkruidstraat 12", "2165VV, LISSERBROEK", "", "", "", "1"
|
|
579
|
+
], ["", "O", "", "", "", "", 101423, "Plug", "Lettenburg 71", "2135DE, HOOFDDORP", "noreply@colijn-it.nl", "", "", "1"
|
|
580
|
+
], ["", "O", "", "", "", "", 101424, "Harmes", "Granidastraat 3", "2026SL, HAARLEM", "noreply@colijn-it.nl", "", "", "1"
|
|
581
|
+
], ["", "O", "", "", "", "", 101425, "Wolzak", "Naxos 19", "2134AR, Hoofddorp", "", "", "", "1"
|
|
582
|
+
], ["", "O", "", "", "", "", 101426, "van Smaalen", "Kleverlaan 151", "2023JE, HAARLEM", "", "", "", "1"
|
|
583
|
+
], ["", "O", "", "", "", "", 101427, "Koelemeijer", "Taniaburg 23", "2135BV, HOOFDDORP", "noreply@colijn-it.nl", "0627574653", "", "1"
|
|
584
|
+
], ["", "O", "", "", "", "", 101428, "van Amsterdam", "Merelplantsoen 3", "2371NT, ROELOFARENDSVEEN", "", "", "", "1"
|
|
585
|
+
], ["", "O", "", "", "", "", 101429, "Verdegaal", "Vogelenzangseweg 184", "2114BD, Vogelenzang", "", "", "", "1"
|
|
586
|
+
], ["", "O", "", "", "", "", 101430, "Bier", "Trompstraat 7", "2041JC, ZANDVOORT", "", "", "", "1"
|
|
587
|
+
], ["", "O", "", "", "", "", 101431, "Timmers", "Buizerd 1", "2171PK, Sassenheim", "", "", "", "1"
|
|
588
|
+
], ["", "O", "", "", "", "", 101432, "Westra", "Drongelenplein 12", "2134DS, HOOFDDORP", "", "", "", "1"
|
|
589
|
+
], ["", "O", "", "", "", "", 101433, "Koelewijn", "Mozartstraat 8", "3752BN, BUNSCHOTEN SPAKENBURG", "", "", "", "1"
|
|
590
|
+
], ["", "O", "", "", "", "", 101434, "Apeldoorn", "Benesserlaan 282", "1911VK, UITGEEST", "", "", "", "1"
|
|
591
|
+
], ["", "O", "", "", "", "", 101435, "Rademaker", "Zuiderhout 14", "1695AR, BLOKKER", "", "", "", "1"
|
|
592
|
+
], ["", "O", "", "", "", "", 101436, "Bax", "Meijerslaan 144", "2105PD, Heemstede", "", "", "", "1"
|
|
593
|
+
], ["", "O", "", "", "", "", 101437, "Aldenberg", "Bosstraat 38", "2153AN, NIEUW VENNEP", "", "", "", "1"
|
|
594
|
+
], ["", "O", "", "", "", "", 101438, "Jacobs", "Linge 71", "2105WE, HEEMSTEDE", "", "", "", "1"
|
|
595
|
+
], ["", "O", "", "", "", "", 101439, "de Jong", "Willem Klooslaan 15", "1422JV, UITHOORN", "noreply@colijn-it.nl", "", "", "1"
|
|
596
|
+
], ["", "O", "", "", "", "", 101440, "Botman", "Raadhuislaan 40", "2131BG, HOOFDDORP", "noreply@colijn-it.nl", "", "", "1"
|
|
597
|
+
], ["", "O", "", "", "", "", 101441, "Ozcan", "Vechtstraat 68", "1972TH, Ijmuiden", "", "", "", "1"
|
|
598
|
+
], ["", "O", "", "", "", "", 101442, "Koenders", "Olmenlaan 31", "1161JS, ZWANENBURG", "", "", "", "1"
|
|
599
|
+
], ["", "O", "", "", "", "", 101443, "van der Mark", "Dassenbos 23", "2134RA, Hoofddorp", "", "", "", "1"
|
|
600
|
+
], ["", "O", "", "", "", "", 101444, "Snoeij", "Wagenstraat 18", "2161ZM, LISSE", "", "", "", "1"
|
|
601
|
+
], ["", "O", "", "", "", "", 101445, "Souwer-troost", "Diepenbrockstraat 101", "2033RE, HAARLEM", "", "", "", "1"
|
|
602
|
+
], ["", "O", "", "", "", "", 101446, "van der Putten", "Sonderholm 89", "2133JC, Hoofddorp", "", "", "", "1"
|
|
603
|
+
], ["", "O", "", "", "", "", 101447, "Schipper", "Burgwal 61", "2011BB, HAARLEM", "", "", "", "1"
|
|
604
|
+
], ["", "O", "", "", "", "", 101448, "Kok", "Haarlemmerstraat 14", "2042NC, ZANDVOORT", "", "", "", "1"
|
|
605
|
+
], ["", "O", "", "", "", "", 101449, "Jochemsz", "Agneshove 54", "2215HT, VOORHOUT", "", "", "", "1"
|
|
606
|
+
], ["", "O", "", "", "", "", 101450, "Spreeuw", "Lutullistraat 117", "2131TE, HOOFDDORP", "", "", "", "1"
|
|
607
|
+
], ["", "O", "", "", "", "", 101451, "Debrichy", "Kerkelaan 1", "1834AS, SINT PANCRAS", "", "", "", "1"
|
|
608
|
+
], ["", "O", "", "", "", "", 101452, "Weerman", "Aalsmeerderdijk 412", "1436BK, AALSMEER", "", "", "", "1"
|
|
609
|
+
], ["", "O", "", "", "", "", 101453, "Mol", "Johan Hofmanstraat 198", "1069KE, AMSTERDAM", "", "", "", "1"
|
|
610
|
+
], ["", "O", "", "", "", "", 101454, "The", "Westhove 75", "2134VP, Hoofddorp", "", "06-46216975", "", "1"
|
|
611
|
+
], ["", "O", "", "", "", "", 101455, "de Ruiter", "Georgebos 27", "1974LH, IJMUIDEN", "", "", "", "1"
|
|
612
|
+
], ["", "O", "", "", "", "", 101456, "van den Bosch", "Oudaenstraat 20", "2026SC, HAARLEM", "", "", "", "1"
|
|
613
|
+
], ["", "O", "", "", "", "", 101457, "Barnhoorn", "Morellenweg 3", "2321DB, Leiden", "", "", "", "1"
|
|
614
|
+
], ["", "O", "", "", "", "", 101458, "Heijne", "Tesselschadestraat 7", "2026SM, HAARLEM", "", "06-51309853", "", "1"
|
|
615
|
+
], ["", "O", "", "", "", "", 101459, "van Maris", "Turfspoor 195", "2165AW, LISSERBROEK", "", "", "", "1"
|
|
616
|
+
], ["", "O", "", "", "", "", 101460, "van Helden", "Hendrik Roozenlaan 35", "2015JM, HAARLEM", "", "", "", "1"
|
|
617
|
+
], ["", "O", "", "", "", "", 101461, "Hooijman", "Rodelindalaan 13", "2152PM, NIEUW VENNEP", "", "", "", "1"
|
|
618
|
+
], ["", "O", "", "", "", "", 101462, "Natrop", "Vijverbos 10", "2134GS, HOOFDDORP", "", "", "", "1"
|
|
619
|
+
], ["", "O", "", "", "", "", 101463, "Griffioen", "Marellaan 20", "2181DW, HILLEGOM", "", "", "", "1"
|
|
620
|
+
], ["", "O", "", "", "", "", 101464, "Aafjes", "Boutenburg 137", "1068ZC, AMSTERDAM", "", "", "", "1"
|
|
621
|
+
], ["", "O", "", "", "", "", 101465, "Bink", "Slotermeerlaan 1", "1064GX, Amsterdam", "", "", "", "1"
|
|
622
|
+
], ["", "O", "", "", "", "", 101466, "Kleijhorst", "Brakenburghstraat 26", "2023DV, HAARLEM", "", "", "", "1"
|
|
623
|
+
], ["", "O", "", "", "", "", 101467, "Koethouwer", "Voorhelmstraat 18", "2012ZR, HAARLEM", "", "", "", "1"
|
|
624
|
+
], ["", "O", "", "", "", "", 101468, "Gerhart", "Eiber 104", "2411LC, BODEGRAVEN", "", "", "", "1"
|
|
625
|
+
], ["", "O", "", "", "", "", 101469, "Hoekstra", "Fedoralaan 27", "2152DE, NIEUW VENNEP", "", "", "", "1"
|
|
626
|
+
], ["", "O", "", "", "", "", 101470, "Gopalrai", "Willy den Oudenstraat 36", "6833LE, ARNHEM", "noreply@colijn-it.nl", "", "", "1"
|
|
627
|
+
], ["", "O", "", "", "", "", 101471, "Zaadnoordijk", "Max Euwestraat 45", "2042RA, ZANDVOORT", "", "", "", "1"
|
|
628
|
+
], ["", "O", "", "", "", "", 101472, "Boogaards", "Duinweg 40", "2204AV, NOORDWIJK ZH", "", "", "", "1"
|
|
629
|
+
], ["", "O", "", "", "", "", 101473, "Soomer", "Schelphoek 60", "2134WR, HOOFDDORP", "", "", "", "1"
|
|
630
|
+
], ["", "O", "", "", "", "", 101474, "van der Polder", "Oosteinderweg 412", "1432BA, Aalsmeer", "", "", "", "1"
|
|
631
|
+
], ["", "O", "", "", "", "", 101475, "van Everdinck", "Westerdreef 155", "2161GR, LISSE", "", "06-53319491", "", "1"
|
|
632
|
+
], ["", "O", "", "", "", "", 101476, "Frasquet-boon", "Kloosterstraat 78", "2021VP, HAARLEM", "", "", "", "1"
|
|
633
|
+
], ["", "O", "", "", "", "", 101477, "van Trigt", "Kromboomveld 3", "2041GH, ZANDVOORT", "noreply@colijn-it.nl", "", "", "1"
|
|
634
|
+
], ["", "O", "", "", "", "", 101478, "Eijsackers", "Judostraat 8", "2492AA, Den haag", "", "", "", "1"
|
|
635
|
+
], ["", "O", "", "", "", "", 101479, "Hofland", "Laapersveld 9", "2151JG, Nieuw vennep", "", "", "", "1"
|
|
636
|
+
], ["", "O", "", "", "", "", 101480, "de Koning", "Hoofmanstraat 37", "2013DP, Haarlem", "", "", "", "1"
|
|
637
|
+
], ["", "O", "", "", "", "", 101481, "den Doop", "Oeverpad 190", "1068PH, Amsterdam", "", "", "", "1"
|
|
638
|
+
], ["", "O", "", "", "", "", 101482, "Buts", "Engelandlaan 388", "2034NM, Haarlem", "", "", "", "1"
|
|
639
|
+
], ["", "O", "", "", "", "", 101483, "Bosia", "Clantstraat 30", "1433NV, KUDELSTAART", "", "", "", "1"
|
|
640
|
+
], ["", "O", "", "", "", "", 101484, "Vermeij", "Bonkelaar 44", "3642CP, MIJDRECHT", "", "", "", "1"
|
|
641
|
+
], ["", "O", "", "", "", "", 101485, "Bottelier", "Westerhoevelaan 3", "2071RN, SANTPOORT NOORD", "", "", "", "1"
|
|
642
|
+
], ["", "O", "", "", "", "", 101486, "van Gils", "Roerdomplaan 8", "2106DG, HEEMSTEDE", "", "", "", "1"
|
|
643
|
+
], ["", "O", "", "", "", "", 101487, "van der Knaap", "Hoofdweg 853", "2131MB, HOOFDDORP", "noreply@colijn-it.nl", "", "", "1"
|
|
644
|
+
], ["", "O", "", "", "", "", 101488, "Demoet", "Eendenkooi 24", "2408SL, ALPHEN AAN DEN RIJN", "", "", "", "1"
|
|
645
|
+
], ["", "O", "", "", "", "", 101489, "v. Lent", "Kudelstaartseweg 176", "1433GP, KUDELSTAART", "", "", "", "1"
|
|
646
|
+
], ["", "O", "", "", "", "", 101490, "v.d. Vlist", "Duindoornlaan 26", "2225RT, Katwijk aan zee", "", "", "", "1"
|
|
647
|
+
], ["", "O", "", "", "", "", 101491, "Dekeling", "Houtwijkerveld 38", "2131MG, Hoofddorp", "", "", "", "1"
|
|
648
|
+
], ["", "O", "", "", "", "", 101492, "Driessen", "Leembruggestraat 58", "2182KV, Hillegom", "", "", "", "1"
|
|
649
|
+
], ["", "O", "", "", "", "", 101493, "Osinga", "Northgodreef 37", "2202XZ, NOORDWIJK ZH", "", "", "", "1"
|
|
650
|
+
], ["", "O", "", "", "", "", 101494, "Spaargaren", "Pontweg 3", "1432BW, Aalsmeer", "", "", "", "1"
|
|
651
|
+
], ["", "O", "", "", "", "", 101495, "de Gelder", "Oranjelaan 62", "1421AK, Uithoorn", "", "", "", "1"
|
|
652
|
+
], ["", "O", "", "", "", "", 101496, "Koopman", "Von brucken focklaan 23", "2102XA, Haarlem", "", "", "", "1"
|
|
653
|
+
], ["", "O", "", "", "", "", 101497, "de Vries", "Dopheidestraat 32", "2165VP, LISSERBROEK", "", "", "", "1"
|
|
654
|
+
], ["", "O", "", "", "", "", 101498, "van der Velde", "Clematisstraat 28", "1431SE, Aalsmeer", "", "", "", "1"
|
|
655
|
+
], ["", "O", "", "", "", "", 101499, "de Jong", "Barentzstraat 35", "2161TK, LISSE", "", "", "", "1"
|
|
656
|
+
], ["", "O", "", "", "", "", 101500, "Bar Restaurant Het Alternatief Massada", "Rigolettosingel 44", "2152PR, NIEUW VENNEP", "noreply@colijn-it.nl", "06-51002844", "", "1"
|
|
657
|
+
], ["", "O", "", "", "", "", 101501, "Oppenhuis", "Ligusterlaan 15", "2015LH, HAARLEM", "", "", "", "1"
|
|
658
|
+
], ["", "O", "", "", "", "", 101502, "van Antwerpen", "Noordhavenpoort 9", "2152HC, NIEUW VENNEP", "", "", "", "1"
|
|
659
|
+
], ["", "O", "", "", "", "", 101503, "de Jong", "Duinweg 106", "2204AW, NOORDWIJK ZH", "noreply@colijn-it.nl", "", "", "1"
|
|
660
|
+
], ["", "O", "", "", "", "", 101504, "Walstra", "Marga Klompelaan 25", "1945ZK, BEVERWIJK", "noreply@colijn-it.nl", "", "", "1"
|
|
661
|
+
], ["", "O", "", "", "", "", 101505, "v. Leeuwen", "Punterstraat 6", "1431CT, AALSMEER", "", "", "", "1"
|
|
662
|
+
], ["", "O", "", "", "", "", 101506, "Fine", "Kastanjelaan 359", "1185MZ, AMSTELVEEN", "", "", "", "1"
|
|
663
|
+
], ["", "O", "", "", "", "", 101507, "Boelhouwer", "Legmeerstraat 3", "2131DV, HOOFDDORP", "", "", "", "1"
|
|
664
|
+
], ["", "O", "", "", "", "", 101508, "Mols", "Takkenburg 8", "2135BT, HOOFDDORP", "", "", "", "1"
|
|
665
|
+
], ["", "O", "", "", "", "", 101509, "Zonneveld", "Zuiderkruis 141", "2163AE, Lisse", "", "", "", "1"
|
|
666
|
+
], ["", "O", "", "", "", "", 101510, "Hellemans", "Lorentsstraat 278", "2041SM, Zandvoort", "", "", "", "1"
|
|
667
|
+
], ["", "O", "", "", "", "", 101511, "Helmink", "J. Westerdijklaan 15", "2104TT, HEEMSTEDE", "", "", "", "1"
|
|
668
|
+
], ["", "O", "", "", "", "", 101512, "Vergeer", "Du Perronstraat 21", "1064JS, AMSTERDAM", "", "", "", "1"
|
|
669
|
+
], ["", "O", "", "", "", "", 101513, "Heuvel", "Olof Palme Hof 37", "1314WC, ALMERE", "noreply@colijn-it.nl", "", "", "1"
|
|
670
|
+
], ["", "O", "", "", "", "", 101514, "Klaasse V.d. meer", "Slotlaan 17", "2171TB, SASSENHEIM", "", "", "", "1"
|
|
671
|
+
], ["", "O", "", "", "", "", 101515, "Pelupessy", "Glipperweg 67", "2104AJ, Heemstede", "", "", "", "1"
|
|
672
|
+
], ["", "O", "", "", "", "", 101516, "Mast", "Brasemstraat 44", "1432PJ, Aalsmeer", "", "", "", "1"
|
|
673
|
+
], ["", "O", "", "", "", "", 101517, "van der Aart", "Bloembinderspark 61", "2161XR, LISSE", "noreply@colijn-it.nl", "", "", "1"
|
|
674
|
+
], ["", "O", "", "", "", "", 101518, "van der Woert", "Brandaris 44", "2134XT, HOOFDDORP", "", "", "", "1"
|
|
675
|
+
], ["", "O", "", "", "", "", 101519, "Kenselaar", "A. Thijmlaan 9", "2106EG, HEEMSTEDE", "", "", "", "1"
|
|
676
|
+
], ["", "O", "", "", "", "", 101520, "Kleijn", "Triviumlaan 26", "2408DL, ALPHEN AAN DEN RIJN", "", "", "", "1"
|
|
677
|
+
], ["", "O", "", "", "", "", 101521, "Bakkum", "V.d. Spiegellaan 2", "2101BN, HEEMSTEDE", "", "", "", "1"
|
|
678
|
+
], ["", "O", "", "", "", "", 101522, "Timmerbeul", "Vivaldisingel 259", "2151NK, NIEUW VENNEP", "", "", "", "1"
|
|
679
|
+
], ["", "O", "", "", "", "", 101523, "Krul", "Bellevuelaan 367", "2012BX, HAARLEM", "", "", "", "1"
|
|
680
|
+
], ["", "O", "", "", "", "", 101524, "Nurmohamed", "Anne Franklaan 68", "2135HB, HOOFDDORP", "", "", "", "1"
|
|
681
|
+
], ["", "O", "", "", "", "", 101525, "Scheenaard", "Willems beekweg 38", "1971GW, Ijmuiden", "", "", "", "1"
|
|
682
|
+
], ["", "O", "", "", "", "", 101526, "Leunk", "Palmaleterweg 78", "2033BT, Haarlem", "", "", "", "1"
|
|
683
|
+
], ["", "O", "", "", "", "", 101527, "van Lier", "Dirk Schaferhof 7", "1421KG, UITHOORN", "", "", "", "1"
|
|
684
|
+
], ["", "O", "", "", "", "", 101528, "van Eijk", "Kerkplein 11", "2841XK, Moordrecht", "", "", "", "1"
|
|
685
|
+
], ["", "O", "", "", "", "", 101529, "Damen", "Amperestraat 8", "1521TJ, WORMERVEER", "", "", "", "1"
|
|
686
|
+
], ["", "O", "", "", "", "", 101530, "Kronbichler", "Ceramplein 71", "1095DE, AMSTERDAM", "", "", "", "1"
|
|
687
|
+
], ["", "O", "", "", "", "", 101531, "van der Veen", "Kromboomsveld 36", "2041GE, Zandvoort", "", "", "", "1"
|
|
688
|
+
], ["", "O", "", "", "", "", 101532, "van Haaren", "Eenhoornstraat 91", "1973XS, IJMUIDEN", "noreply@colijn-it.nl", "0653335191", "", "1"
|
|
689
|
+
], ["", "O", "", "", "", "", 101533, "Jongejan", "Grote Buitendijk 150", "1991TE, VELSERBROEK", "", "", "", "1"
|
|
690
|
+
], ["", "O", "", "", "", "", 101534, "Martens", "Graan voor Visch 15123", "2132EJ, HOOFDDORP", "noreply@colijn-it.nl", "06-23880344", "", "1"
|
|
691
|
+
], ["", "O", "", "", "", "", 101535, "Heus", "Oosterduinweg 28", "2111XJ, AERDENHOUT", "", "", "", "1"
|
|
692
|
+
], ["", "O", "", "", "", "", 101536, "Griffioen", "Wilhelminalaan 12", "2182CW, HILLEGOM", "", "", "", "1"
|
|
693
|
+
], ["", "O", "", "", "", "", 101537, "van Griethuijsen", "Oddinkhem 6", "2151SP, Nieuw vennep", "", "", "", "1"
|
|
694
|
+
], ["", "O", "", "", "", "", 101538, "Zegstroo", "Nederveldstraat 15", "2157PL, ABBENES", "noreply@colijn-it.nl", "", "", "1"
|
|
695
|
+
], ["", "O", "", "", "", "", 101539, "Bakker", "Ina boudier bakkerlaan 9", "1187WR, Amstelveen", "", "", "", "1"
|
|
696
|
+
], ["", "O", "", "", "", "", 101540, "Veldheer", "Trompenburg 14", "2135BJ, Hoofddorp", "", "", "", "1"
|
|
697
|
+
], ["", "O", "", "", "", "", 101541, "Opdam", "Oksholm 60", "2133KZ, HOOFDDORP", "", "", "", "1"
|
|
698
|
+
], ["", "O", "", "", "", "", 101542, "Abbenhuis", "Hanny Schaftstraat 24", "2135KE, HOOFDDORP", "", "", "", "1"
|
|
699
|
+
], ["", "O", "", "", "", "", 101543, "van Haaften", "Waltmanstraat 5", "2136BA, ZWAANSHOEK", "", "", "", "1"
|
|
700
|
+
], ["", "O", "", "", "", "", 101544, "Schutte", "Albert Verweylaan 56", "1985CG, DRIEHUIS NH", "", "", "", "1"
|
|
701
|
+
], ["", "O", "", "", "", "", 101545, "Schipper", "Engelenburg 65", "2036RB, HAARLEM", "", "", "", "1"
|
|
702
|
+
], ["", "O", "", "", "", "", 101546, "Olden", "Vergierdeweg 135", "2026ZB, HAARLEM", "", "", "", "1"
|
|
703
|
+
], ["", "O", "", "", "", "", 101547, "van Buren", "Kandinskystraat 36", "1328KG, ALMERE", "", "", "", "1"
|
|
704
|
+
], ["", "O", "", "", "", "", 101548, "Caldenhove", "C. van Zantenstraat 6", "2551PJ, DEN HAAG", "", "", "", "1"
|
|
705
|
+
], ["", "O", "", "", "", "", 101549, "Bakker", "Bleker 107", "2152AT, Nieuw vennep", "", "", "", "1"
|
|
706
|
+
], ["", "O", "", "", "", "", 101550, "Schuurman", "Ter veenlaan 11", "2131WK, HOOFDDORP", "", "", "", "1"
|
|
707
|
+
], ["", "O", "", "", "", "", 101551, "van Vugt", "Scholtenlaan 27", "2105PH, HEEMSTEDE", "", "06-40233630=DOCHTER", "", "1"
|
|
708
|
+
], ["", "O", "", "", "", "", 101552, "Kiel", "Zuiderdreef 63", "2151CM, NIEUW VENNEP", "", "", "", "1"
|
|
709
|
+
], ["", "O", "", "", "", "", 101554, "de Vries", "Ortler 51", "1060PH, Amsterdam", "", "", "", "1"
|
|
710
|
+
], ["", "O", "", "", "", "", 101555, "de Leth", "Brederodelaan 37", "2061KG, Bloemendaal", "", "", "", "1"
|
|
711
|
+
], ["", "O", "", "", "", "", 101556, "Spilker", "Molenlaan 40", "2181GE, HILLEGOM", "", "", "", "1"
|
|
712
|
+
], ["", "O", "", "", "", "", 101557, "Jongerius", "Beek en hof 19", "1068DH, Amsterdam", "", "", "", "1"
|
|
713
|
+
], ["", "O", "", "", "", "", 101558, "de Bruin", "IJtochtkade 124", "1161XL, ZWANENBURG", "", "", "", "1"
|
|
714
|
+
], ["", "O", "", "", "", "", 101559, "Schmitz", "Heemsteedse dreef 106", "2102KP, HEEMSTEDE", "", "", "", "1"
|
|
715
|
+
], ["", "O", "", "", "", "", 101560, "van Barneveld", "Vliehors 121", "2134XM, HOOFDDORP", "", "", "", "1"
|
|
716
|
+
], ["", "O", "", "", "", "", 101561, "Woerdeman", "Schroeder v.d. Kolkstraat 61", "2035XR, HAARLEM", "noreply@colijn-it.nl", "023-536559", "", "1"
|
|
717
|
+
], ["", "O", "", "", "", "", 101562, "Meegdes", "Navona 34", "2134BE, HOOFDDORP", "", "", "", "1"
|
|
718
|
+
], ["", "O", "", "", "", "", 101563, "Koop", "Stijn streuvelplantsoen 16", "2182ZH, Hillegom", "", "06-30003977", "", "1"
|
|
719
|
+
], ["", "O", "", "", "", "", 101564, "Bakker", "Timorstraat 147", "2022RD, HAARLEM", "", "", "", "1"
|
|
720
|
+
], ["", "O", "", "", "", "", 101565, "Dekker", "Centaurstraat 2", "2162XZ, LISSE", "", "", "", "1"
|
|
721
|
+
], ["", "O", "", "", "", "", 101566, "Hoekstra", "De Ruyterlaan 58", "2121VK, BENNEBROEK", "", "", "", "1"
|
|
722
|
+
], ["", "O", "", "", "", "", 101567, "van den Bulk", "Mozartplein 13", "2651VA, BERKEL EN RODENRIJS", "", "", "", "1"
|
|
723
|
+
], ["", "O", "", "", "", "", 101568, "Klarenbeek", "Stuyvesantstraat 28", "2023KN, HAARLEM", "noreply@colijn-it.nl", "", "", "1"
|
|
724
|
+
], ["", "O", "", "", "", "", 101569, "Manig", "Gaelstraat 51", "2013CG, HAARLEM", "", "", "", "1"
|
|
725
|
+
], ["", "O", "", "", "", "", 101570, "van Iersel", "Simon stevinstraat 19", "1097BX, AMSTERDAM", "", "", "", "1"
|
|
726
|
+
], ["", "O", "", "", "", "", 101571, "Vosse", "Burg. cramergracht 55", "1064AE, Amsterdam", "", "", "", "1"
|
|
727
|
+
], ["", "O", "", "", "", "", 101572, "Klootwijk", "Hazenburglaan 73", "2135EX, Hoofddorp", "", "", "", "1"
|
|
728
|
+
], ["", "O", "", "", "", "", 101573, "Hacheij", "H. Andriessenlaan 9", "2132KG, HOOFDDORP", "", "", "", "1"
|
|
729
|
+
], ["", "O", "", "", "", "", 101574, "Kreike", "Osdorperweg 814", "1067TC, AMSTERDAM", "", "", "", "1"
|
|
730
|
+
], ["", "O", "", "", "", "", 101575, "Vletter", "Kleipettenlaan 142", "2231BN, RIJNSBURG", "noreply@colijn-it.nl", "", "", "1"
|
|
731
|
+
], ["", "O", "", "", "", "", 101576, "de Jong", "Alphons diepenbrockhof 6", "2132KA, Hoofddorp", "", "", "", "1"
|
|
732
|
+
], ["", "O", "", "", "", "", 101577, "Stricker", "Ina Boudier Bakkerdreef 69", "2135RB, HOOFDDORP", "", "", "", "1"
|
|
733
|
+
], ["", "O", "", "", "", "", 101578, "Paap", "Vossestein 4", "2151KM, NIEUW VENNEP", "", "", "", "1"
|
|
734
|
+
], ["", "O", "", "", "", "", 101579, "Bos", "Velserduinweg 247", "1971ZD, IJMUIDEN", "noreply@colijn-it.nl", "", "", "1"
|
|
735
|
+
], ["", "O", "", "", "", "", 101580, "Webbers", "Karel van manderhof 85", "1422BX, UITHOORN", "", "", "", "1"
|
|
736
|
+
], ["", "O", "", "", "", "", 101581, "van Wensen", "Hagelingerweg 162", "2071CN, SANTPOORT-NOORD", "noreply@colijn-it.nl", "06-51986104", "", "1"
|
|
737
|
+
], ["", "O", "", "", "", "", 101582, "van Garderen", "Jan Sluijterslaan 94", "2033TP, HAARLEM", "", "", "", "1"
|
|
738
|
+
], ["", "O", "", "", "", "", 101583, "Hallink", "Soestdijkstraat 34", "2012KS, HAARLEM", "", "", "", "1"
|
|
739
|
+
], ["", "O", "", "", "", "", 101584, "Koeman", "Rondenburglaan 165", "2135KR, Hoofddorp", "", "", "", "1"
|
|
740
|
+
], ["", "O", "", "", "", "", 101585, "Schrama", "Kastanjelaan 4", "2161MN, LISSE", "", "", "", "1"
|
|
741
|
+
], ["", "O", "", "", "", "", 101586, "Buurmeester", "Brouwersstraat 48", "2013WN, HAARLEM", "", "", "", "1"
|
|
742
|
+
], ["", "O", "", "", "", "", 101587, "Janssens", "Kleine houtweg 11", "2012CA, Haarlem", "", "", "", "1"
|
|
743
|
+
], ["", "O", "", "", "", "", 101588, "van Egmond", "Watermuntlaan 35", "2121RE, BENNEBROEK", "", "", "", "1"
|
|
744
|
+
], ["", "O", "", "", "", "", 101589, "Kaandorp", "Zonnebeke 2", "1066TE, AMSTERDAM", "", "", "", "1"
|
|
745
|
+
], ["", "O", "", "", "", "", 101590, "Slebe", "Caninefatenstraat 32", "2025CC, HAARLEM", "noreply@colijn-it.nl", "", "", "1"
|
|
746
|
+
], ["", "O", "", "", "", "", 101591, "Salemi", "Staringlaan 37", "1422BG, UITHOORN", "", "", "", "1"
|
|
747
|
+
], ["", "O", "", "", "", "", 101592, "Dijkhof", "Da Costakade 132", "1053XC, AMSTERDAM", "", "", "", "1"
|
|
748
|
+
], ["", "O", "", "", "", "", 101593, "Griekspoor", "Marketentster 23", "2152LW, Nieuw-vennep", "", "", "", "1"
|
|
749
|
+
], ["", "O", "", "", "", "", 101594, "Lassooij", "Schoonenburgsingel 160", "2135GE, Hoofddorp", "", "", "", "1"
|
|
750
|
+
], ["", "O", "", "", "", "", 101595, "Klok", "Eksterlaan 284", "2026XP, HAARLEM", "", "", "", "1"
|
|
751
|
+
], ["", "O", "", "", "", "", 101596, "Bouwman", "Korenbloemlaan 9", "2343VA, OEGSTGEEST", "", "", "", "1"
|
|
752
|
+
], ["", "O", "", "", "", "", 101597, "Slagboom", "Zevengesternte 15", "2163AK, LISSE", "", "", "", "1"
|
|
753
|
+
], ["", "O", "", "", "", "", 101598, "Rog", "Blekerij 21", "2223BW, Katwijk", "", "", "", "1"
|
|
754
|
+
], ["", "O", "", "", "", "", 101599, "van Duijvenvoorde", "Liesbos 44", "2134SB, HOOFDDORP", "", "", "", "1"
|
|
755
|
+
], ["", "M", "", "", "", "", 1016, "MyFirstName Luijsterburg", "Burgemeester Elkhuizenln 47", "4661 CJ, HALSTEREN", "nico@colijn-it.nl", "", "0113 123456", "1"
|
|
756
|
+
], ["", "O", "", "", "", "", 101600, "de Jong", "Wouwenkoplaan 56", "1974NN, IJMUIDEN", "", "", "", "1"
|
|
757
|
+
], ["", "O", "", "", "", "", 101601, "Warmerdam", "Hoofdstraat 146", "2181EH, HILLEGOM", "", "", "", "1"
|
|
758
|
+
], ["", "O", "", "", "", "", 101602, "Verwindt", "Pieter calandlaan 594", "1060TV, Amsterdam", "", "", "", "1"
|
|
759
|
+
], ["", "O", "", "", "", "", 101603, "Scholtens", "Schweitzstraat 154", "2131RK, HOOFDDORP", "", "", "", "1"
|
|
760
|
+
], ["", "O", "", "", "", "", 101604, "Monte", "Rembrandtplein 124", "2162EG, Lisse", "", "", "", "1"
|
|
761
|
+
], ["", "O", "", "", "", "", 101605, "van Luijk", "Houtwijkerveld 75", "2131MJ, HOOFDDORP", "", "", "", "1"
|
|
762
|
+
], ["", "O", "", "", "", "", 101606, "Turkucu", "Bernadottelaan 237", "2037GP, Haarlem", "", "", "", "1"
|
|
763
|
+
], ["", "O", "", "", "", "", 101607, "Jong", "Pinksterbloemweg 1", "1508BM, ZAANDAM", "", "", "", "1"
|
|
764
|
+
], ["", "O", "", "", "", "", 101608, "Schouten", "Zandvoorter allee 13", "2106BT, Heemstede", "", "", "", "1"
|
|
765
|
+
], ["", "O", "", "", "", "", 101609, "Holthuis", "Johan bogaardstraat 21", "2151CT, NIEUW VENNEP", "", "", "", "1"
|
|
766
|
+
], ["", "O", "", "", "", "", 101610, "Stoeckart", "Oude karselaan 40", "1182CR, Amstelveen", "", "", "", "1"
|
|
767
|
+
], ["", "O", "", "", "", "", 101611, "Sparreboom", "Graafschapstraat 50", "2033JN, HAARLEM", "", "06-20266624", "", "1"
|
|
768
|
+
], ["", "O", "", "", "", "", 101612, "Schmitz", "Linschotenstraat 22", "2012VH, Haarlem", "", "", "", "1"
|
|
769
|
+
], ["", "O", "", "", "", "", 101613, "Koop", "Brederodestraat 4", "2042BE, ZANDVOORT", "", "", "", "1"
|
|
770
|
+
], ["", "O", "", "", "", "", 101614, "Slotje", "Marga klompestraat 30", "2401ME, Alphen aan den rijn", "", "", "", "1"
|
|
771
|
+
], ["", "O", "", "", "", "", 101615, "Schelvis-Bekker", "Zandvoortselaan 87", "2106CL, Heemstede", "noreply@colijn-it.nl", "", "", "1"
|
|
772
|
+
], ["", "O", "", "", "", "", 101616, "Kuipers", "Marskramerstraat 154", "1033WG, AMSTERDAM", "", "", "", "1"
|
|
773
|
+
], ["", "O", "", "", "", "", 101617, "Prischink", "Menneweg 9", "2171JA, SASSENHEIM", "", "", "", "1"
|
|
774
|
+
], ["", "O", "", "", "", "", 101618, "de Vries", "Ceresplein 98", "9401ZG, ASSEN", "", "", "", "1"
|
|
775
|
+
], ["", "O", "", "", "", "", 101619, "v. Nguyen", "Loevestein 19", "1187DL, Amsterdam", "", "", "", "1"
|
|
776
|
+
], ["", "O", "", "", "", "", 101620, "den Hollander", "Javastraat 8", "2341XL, Oegstgeest", "", "", "", "1"
|
|
777
|
+
], ["", "O", "", "", "", "", 101621, "Imanse", "Muntstraat 52", "2165VK, LISSERBROEK", "", "", "", "1"
|
|
778
|
+
], ["", "O", "", "", "", "", 101622, "Bozic", "Pietersberg 39", "2402ZG, Alphen a/d rijn", "", "", "", "1"
|
|
779
|
+
], ["", "O", "", "", "", "", 101623, "van der Velden", "Grote Boterbloem 61", "1991LK, VELSERBROEK", "", "", "", "1"
|
|
780
|
+
], ["", "O", "", "", "", "", 101624, "Verbeek", "Raadhuislaan 46", "2131BH, HOOFDDORP", "", "", "", "1"
|
|
781
|
+
], ["", "O", "", "", "", "", 101625, "Maurik", "Eerste van der Helststraat 65", "1073AD, AMSTERDAM", "", "06-41909077", "", "1"
|
|
782
|
+
], ["", "O", "", "", "", "", 101626, "van Zeeland", "Herman vd Berghstraat 40", "2033CG, HAARLEM", "", "06-51942999", "", "1"
|
|
783
|
+
], ["", "O", "", "", "", "", 101627, "Kuijper", "Albert Schweitzerlaan 6", "2037RS, HAARLEM", "", "", "", "1"
|
|
784
|
+
], ["", "O", "", "", "", "", 101628, "Verweij", "Mambo 71", "2152SX, NIEUW VENNEP", "", "", "", "1"
|
|
785
|
+
], ["", "O", "", "", "", "", 101629, "Pheiffer", "Bijweglaan 24", "2121BH, BENNEBROEK", "", "", "", "1"
|
|
786
|
+
], ["", "O", "", "", "", "", 101630, "Cornelisse", "Haas 42", "1422WV, Uithoorn", "", "", "", "1"
|
|
787
|
+
], ["", "O", "", "", "", "", 101631, "Bank", "Weth. van damlaan 102", "3648XP, Wilnis", "", "", "", "1"
|
|
788
|
+
], ["", "O", "", "", "", "", 101632, "van Graas", "Venneperweg 270", "2153AE, NIEUW VENNEP", "", "", "", "1"
|
|
789
|
+
], ["", "O", "", "", "", "", 101633, "van den Ende", "Zadelmaker 81", "2152LN, NIEUW VENNEP", "", "", "", "1"
|
|
790
|
+
], ["", "O", "", "", "", "", 101634, "Bartels", "Lorentzlaan 25", "2105TP, HEEMSTEDE", "", "", "", "1"
|
|
791
|
+
], ["", "O", "", "", "", "", 101635, "Bos", "Annie Romeinstraat 42", "2135SJ, HOOFDDORP", "", "", "", "1"
|
|
792
|
+
], ["", "O", "", "", "", "", 101636, "Repko", "Prof. van der Scheerstraat 47", "2035AJ, HAARLEM", "", "", "", "1"
|
|
793
|
+
], ["", "O", "", "", "", "", 101637, "Wissink", "Brandaris 16", "2134XT, HOOFDDORP", "noreply@colijn-it.nl", "06-22074666", "", "1"
|
|
794
|
+
], ["", "O", "", "", "", "", 101638, "Groot", "Rembangstraat 35", "2022ES, HAARLEM", "", "", "", "1"
|
|
795
|
+
], ["", "O", "", "", "", "", 101639, "Stellingwerf", "Kruisweg 1109", "2131CV, Hoofddorp", "", "", "", "1"
|
|
796
|
+
], ["", "O", "", "", "", "", 101640, "Kortekaas", "Santpoorterstraat 7", "2023DA, HAARLEM", "", "", "", "1"
|
|
797
|
+
], ["", "O", "", "", "", "", 101641, "Wassenaar", "Westerdreef 16", "2161GN, Lisse", "", "", "", "1"
|
|
798
|
+
], ["", "O", "", "", "", "", 101642, "Lodders", "Willem pijperlaan 11", "2132KK, HOOFDDORP", "", "", "", "1"
|
|
799
|
+
], ["", "O", "", "", "", "", 101643, "Prins", "Louis pasteurstraat 263", "2035RW, HAARLEM", "", "", "", "1"
|
|
800
|
+
], ["", "O", "", "", "", "", 101644, "van Son", "Glipperdreef 18", "2104WJ, HEEMSTEDE", "", "", "", "1"
|
|
801
|
+
], ["", "O", "", "", "", "", 101645, "Postma", "Doorneberglaan 289", "1974NK, IJMUIDEN", "", "", "", "1"
|
|
802
|
+
], ["", "O", "", "", "", "", 101646, "Dijkhuizen", "Bijweglaan 21", "2121BG, BENNEBROEK", "", "", "", "1"
|
|
803
|
+
], ["", "O", "", "", "", "", 101647, "Sanders", "Engelsholm 62", "2133AH, Hoofddorp", "", "", "", "1"
|
|
804
|
+
], ["", "O", "", "", "", "", 101648, "Staats", "Engelenburg 227", "2036RH, Haarlem", "", "", "", "1"
|
|
805
|
+
], ["", "O", "", "", "", "", 101649, "van Wetering", "Marconistraat 26", "1973PK, IJMUIDEN", "", "", "", "1"
|
|
806
|
+
], ["", "O", "", "", "", "", 101650, "Randsdorp", "Johan Rosenkrantzlaan 25", "2104CC, HEEMSTEDE", "noreply@colijn-it.nl", "", "", "1"
|
|
807
|
+
], ["", "O", "", "", "", "", 101651, "Hoogenboom", "Middenweg 16", "2371GR, ROELOFARENDSVEEN", "", "", "", "1"
|
|
808
|
+
], ["", "O", "", "", "", "", 101652, "Abspoel", "Marga klompesingel 90", "2135JB, Hoofddorp", "", "", "", "1"
|
|
809
|
+
], ["", "O", "", "", "", "", 101653, "Claessen", "Theemsplein 46", "2014LP, Haarlem", "", "", "", "1"
|
|
810
|
+
], ["", "O", "", "", "", "", 101654, "Weijers", "Esdoornkade 28", "2101WP, Heemstede", "", "", "", "1"
|
|
811
|
+
], ["", "O", "", "", "", "", 101655, "Wellema", "Sleedoornweg 6", "2015KS, HAARLEM", "", "", "", "1"
|
|
812
|
+
], ["", "O", "", "", "", "", 101656, "van Neuren", "Kruisweg 777", "2132NG, Hoofddorp", "", "", "", "1"
|
|
813
|
+
], ["", "O", "", "", "", "", 101657, "Weijman", "Engelandlaan 1396", "2034GT, Haarlem", "", "", "", "1"
|
|
814
|
+
], ["", "O", "", "", "", "", 101658, "Hoekstra", "Fedoralaan 27", "2152DE, NIEUW VENNEP", "", "", "", "1"
|
|
815
|
+
], ["", "O", "", "", "", "", 101659, "van Stein", "De Madelief 54", "2161EX, LISSE", "", "", "", "1"
|
|
816
|
+
], ["", "O", "", "", "", "", 101660, "Noordermeer", "Tilbury 10", "2171ND, SASSENHEIM", "", "06-41298335", "", "1"
|
|
817
|
+
], ["", "O", "", "", "", "", 101661, "Baalen", "Zandkreek 19", "2134WJ, HOOFDDORP", "noreply@colijn-it.nl", "0616341942", "", "1"
|
|
818
|
+
], ["", "O", "", "", "", "", 101662, "Bruines", "Brenner 55", "1060NT, Amsterdam", "", "", "", "1"
|
|
819
|
+
], ["", "O", "", "", "", "", 101663, "Vulperhorst", "Karekiet 13", "3641ZE, MIJDRECHT", "", "", "", "1"
|
|
820
|
+
], ["", "O", "", "", "", "", 101664, "Budak", "Geusevesperstraat 17", "2026SH, Haarlem", "", "", "", "1"
|
|
821
|
+
], ["", "O", "", "", "", "", 101665, "Heijerman", "Vlielandhof 4", "2036KM, HAARLEM", "", "", "", "1"
|
|
822
|
+
], ["", "O", "", "", "", "", 101666, "van Hunnik", "Einsteinstraat 48", "1433BG, KUDELSTAART", "", "", "", "1"
|
|
823
|
+
], ["", "O", "", "", "", "", 101667, "Kortekaas", "Cronjestraat 93", "2021JD, HAARLEM", "", "", "", "1"
|
|
824
|
+
], ["", "O", "", "", "", "", 101668, "Molenman", "Ruimzicht 262", "1068CX, AMSTERDAM", "", "06-12624893", "", "1"
|
|
825
|
+
], ["", "O", "", "", "", "", 101669, "Jonkheer", "V. limburg-stirumlaan 30", "2181VV, Hillegom", "", "", "", "1"
|
|
826
|
+
], ["", "O", "", "", "", "", 101670, "Geluk", "Laan van gildestein 10", "2151HV, Nieuw vennep", "", "", "", "1"
|
|
827
|
+
], ["", "O", "", "", "", "", 101671, "Bongenaar", "Zandvoortselaan 84", "2106CS, Heemstede", "", "", "", "1"
|
|
828
|
+
], ["", "O", "", "", "", "", 101672, "Veenhoff", "Middenweg 138", "1097BV, AMSTERDAM", "noreply@colijn-it.nl", "06-27331088", "", "1"
|
|
829
|
+
], ["", "O", "", "", "", "", 101673, "van den Eijnde", "Willem gertebachstraat 1", "2041GG, ZANDVOORT", "", "", "", "1"
|
|
830
|
+
], ["", "O", "", "", "", "", 101674, "Huijsen", "Hofstraweg 206", "2171NT, SASSENHEIM", "", "", "", "1"
|
|
831
|
+
], ["", "O", "", "", "", "", 101675, "Verhaar", "Kamgras 3", "3648HM, WILNIS", "", "", "", "1"
|
|
832
|
+
], ["", "O", "", "", "", "", 101676, "Alter", "Marsmanplein 37", "2025DV, HAARLEM", "", "", "", "1"
|
|
833
|
+
], ["", "O", "", "", "", "", 101677, "Kuling", "Willem bontekoestraat 28", "2014AA, HAARLEM", "", "", "", "1"
|
|
834
|
+
], ["", "O", "", "", "", "", 101678, "Heemskerk", "Beklaan 272", "2201BP, NOORDWIJK ZH", "", "", "", "1"
|
|
835
|
+
], ["", "O", "", "", "", "", 101679, "Tangermann", "Wilhelmina druckerstr. 11", "1991TK, VELSERBROEK", "noreply@colijn-it.nl", "", "", "1"
|
|
836
|
+
], ["", "O", "", "", "", "", 101680, "Spoor", "Romestraat 31", "2034VD, HAARLEM", "", "", "", "1"
|
|
837
|
+
], ["", "O", "", "", "", "", 101681, "de Jong", "Stellingmolen 13", "2406KS, ALPHEN AAN DEN RIJN", "", "", "", "1"
|
|
838
|
+
], ["", "O", "", "", "", "", 101682, "Munninghoff", "Guido van dethlaan 36", "1187TT, Amstelveen", "", "", "", "1"
|
|
839
|
+
], ["", "O", "", "", "", "", 101683, "op ten Berg", "Herman Heijermansweg 119", "2042XR, ZANDVOORT", "", "", "", "1"
|
|
840
|
+
], ["", "O", "", "", "", "", 101684, "Boerema", "Zonnebloemstraat 11", "2014VV, HAARLEM", "", "", "", "1"
|
|
841
|
+
], ["", "O", "", "", "", "", 101685, "Ebben", "Gierstraat 14", "2011GD, HAARLEM", "", "", "", "1"
|
|
842
|
+
], ["", "O", "", "", "", "", 101686, "Doppenbecker", "Tiengemeten 33", "1181CN, AMSTELVEEN", "", "", "", "1"
|
|
843
|
+
], ["", "O", "", "", "", "", 101687, "Zwaak", "Wilh. Druckerstraat 22", "2401KG, ALPHEN AAN DEN RIJN", "noreply@colijn-it.nl", "06-34827111", "", "1"
|
|
844
|
+
], ["", "O", "", "", "", "", 101688, "Abziz", "Reigerstraat 121", "2025XC, Haarlem", "", "", "", "1"
|
|
845
|
+
], ["", "O", "", "", "", "", 101689, "Prins", "Maximalaan 37", "2171VT, SASSENHEIM", "", "", "", "1"
|
|
846
|
+
], ["", "O", "", "", "", "", 101690, "Prenen", "Banjaard 18", "2134WS, HOOFDDORP", "", "", "", "1"
|
|
847
|
+
], ["", "O", "", "", "", "", 101691, "Turkenburg", "Ruisdaelstraat 5", "2406TB, ALPHEN AAN DEN RIJN", "", "", "", "1"
|
|
848
|
+
], ["", "O", "", "", "", "", 101692, "Frank", "Schrikslaan 27", "3762TB, SOEST", "", "", "", "1"
|
|
849
|
+
], ["", "O", "", "", "", "", 101693, "Olthof", "Beemsterstraat 16", "2131ZB, Hoofddorp", "", "", "", "1"
|
|
850
|
+
], ["", "O", "", "", "", "", 101694, "van Leeuwen", "Sierra madrestraat 6", "1448TZ, PURMEREND", "", "", "", "1"
|
|
851
|
+
], ["", "O", "", "", "", "", 101695, "van Stuijvenberg", "Grote Lijster 57", "1423SE, UITHOORN", "", "06-43089943", "", "1"
|
|
852
|
+
], ["", "O", "", "", "", "", 101696, "Roelofs", "Keizersweg 183", "1171XE, BADHOEVEDORP", "", "", "", "1"
|
|
853
|
+
], ["", "O", "", "", "", "", 101697, "Jordanov", "Koopvaarders plantsoen 32", "1034KE, AMSTERDAM", "", "", "", "1"
|
|
854
|
+
], ["", "O", "", "", "", "", 101698, "van der Graft", "Wilhelminastraat 41", "1432GB, Aalsmeer", "", "", "", "1"
|
|
855
|
+
], ["", "O", "", "", "", "", 101699, "v. Schaeffer", "Meerkoet 4", "3641ZB, Mijdrecht", "", "", "", "1"
|
|
856
|
+
], ["", "O", "", "", "", "", 101700, "Hartstra", "Warande 9", "2152CK, NIEUW VENNEP", "", "", "", "1"
|
|
857
|
+
], ["", "O", "", "", "", "", 101701, "Hemelrijk", "Berkenstraat 12", "2023SZ, Haarlem", "", "", "", "1"
|
|
858
|
+
], ["", "O", "", "", "", "", 101702, "Neven", "Engelandlaan 279", "2034PN, HAARLEM", "", "", "", "1"
|
|
859
|
+
], ["", "O", "", "", "", "", 101703, "van Ham", "Hannie schaftstraat 107", "2135KC, Hoofddorp", "", "", "", "1"
|
|
860
|
+
], ["", "O", "", "", "", "", 101704, "Nuyten", "Mondriaanlaan 61", "2172DH, SASSENHEIM", "", "", "", "1"
|
|
861
|
+
], ["", "O", "", "", "", "", 101705, "Demir", "Edward Jennerstraat 1", "2035ME, HAARLEM", "", "", "", "1"
|
|
862
|
+
], ["", "O", "", "", "", "", 101706, "van der Laarse", "Populierenhof 5", "2411SX, BODEGRAVEN", "", "", "", "1"
|
|
863
|
+
], ["", "O", "", "", "", "", 101707, "van Booma", "Indiapad 24", "2408HH, ALPHEN AAN DEN RIJN", "", "", "", "1"
|
|
864
|
+
], ["", "O", "", "", "", "", 101708, "Rangel", "Deltaweg 55", "2134XS, HOOFDDORP", "", "", "", "1"
|
|
865
|
+
], ["", "O", "", "", "", "", 101709, "Eskes", "Kennemerbroekweg 14", "2181HT, HILLEGOM", "", "", "", "1"
|
|
866
|
+
], ["", "O", "", "", "", "", 101710, "Pruis", "Leonard springer straat 10", "1992BW, Velserbroek", "", "", "", "1"
|
|
867
|
+
], ["", "O", "", "", "", "", 101711, "Kuhlman", "Sportlaan 174", "1185TG, AMSTELVEEN", "", "", "", "1"
|
|
868
|
+
], ["", "O", "", "", "", "", 101712, "Lintsen", "Antje breijerstraat 34", "2132ZT, Hoofddorp", "", "", "", "1"
|
|
869
|
+
], ["", "O", "", "", "", "", 101713, "Witterland", "Wittenburg 56", "2135BD, HOOFDDORP", "", "", "", "1"
|
|
870
|
+
], ["", "O", "", "", "", "", 101714, "de Heij", "Lunette 1", "2141MX, VIJFHUIZEN NH", "", "", "", "1"
|
|
871
|
+
], ["", "O", "", "", "", "", 101715, "Brandjes", "Eenhoornlaan 9", "1944RE, BEVERWIJK", "", "", "", "1"
|
|
872
|
+
], ["", "O", "", "", "", "", 101716, "Kraamer", "Mauritslaan 14", "1182BC, AMSTELVEEN", "", "", "", "1"
|
|
873
|
+
], ["", "O", "", "", "", "", 101717, "Peppinck", "Molenwiek 82", "3642BT, MIJDRECHT", "", "", "", "1"
|
|
874
|
+
], ["", "O", "", "", "", "", 101718, "Jambor-kovacs", "James rosskade 5", "1056AC, Amsterdam", "", "", "", "1"
|
|
875
|
+
], ["", "O", "", "", "", "", 101719, "Giesen", "A. van Saksenstraat 16", "2404GR, ALPHEN AAN DEN RIJN", "", "", "", "1"
|
|
876
|
+
], ["", "O", "", "", "", "", 101720, "Schonhage", "Soderblomstraat 117", "2131GD, HOOFDDORP", "", "", "", "1"
|
|
877
|
+
], ["", "O", "", "", "", "", 101721, "Noordermeer", "Jacob van ruijsdaelpl. 209", "2162BE, Lisse", "", "", "", "1"
|
|
878
|
+
], ["", "O", "", "", "", "", 101722, "Brouwer", "Prins bernhardlaan 10", "1421AM, Uithoorn", "", "", "", "1"
|
|
879
|
+
], ["", "O", "", "", "", "", 101723, "Kuiper", "Niels Finsenstraat 12", "2035CZ, HAARLEM", "noreply@colijn-it.nl", "", "", "1"
|
|
880
|
+
], ["", "O", "", "", "", "", 101724, "Uslu", "Gierstraat 69", "2011GC, HAARLEM", "noreply@colijn-it.nl", "0634381878", "", "1"
|
|
881
|
+
], ["", "O", "", "", "", "", 101725, "van Amsterdam", "Ter beek 91", "2161NC, Lisse", "", "", "", "1"
|
|
882
|
+
], ["", "O", "", "", "", "", 101726, "Oosterbeek", "Molenwerfslaan 12", "2103TD, Heemstede", "", "", "", "1"
|
|
883
|
+
], ["", "O", "", "", "", "", 101727, "Grossouw", "Vlietwel 207", "2361XB, WARMOND", "", "", "", "1"
|
|
884
|
+
], ["", "O", "", "", "", "", 101728, "van Rossum", "Graan voor Visch 18813", "2132GJ, HOOFDDORP", "", "", "", "1"
|
|
885
|
+
], ["", "O", "", "", "", "", 101729, "Breman", "Paul scholtenstraat 64", "1063NH, AMSTERDAM", "", "", "", "1"
|
|
886
|
+
], ["", "O", "", "", "", "", 101730, "Hirano", "Van heenvlietlaan 321", "1083DD, Amsterdam", "", "", "", "1"
|
|
887
|
+
], ["", "O", "", "", "", "", 101731, "Verleun", "Zomerlaan 22", "2103AJ, HEEMSTEDE", "", "", "", "1"
|
|
888
|
+
], ["", "O", "", "", "", "", 101732, "van der Burg", "Muntstraat 66", "2165VK, Lisserbroek", "", "", "", "1"
|
|
889
|
+
], ["", "O", "", "", "", "", 101733, "Godaei", "Clingenburg 19", "2135CA, Hoofddorp", "", "", "", "1"
|
|
890
|
+
], ["", "O", "", "", "", "", 101734, "Boer", "Laan van berlioz 13", "2151GN, NIEUW VENNEP", "noreply@colijn-it.nl", "06-54368496", "", "1"
|
|
891
|
+
], ["", "O", "", "", "", "", 101735, "Klaassen", "Wilhelmina druckerstr. 36", "2135HH, HOOFDDORP", "", "", "", "1"
|
|
892
|
+
], ["", "O", "", "", "", "", 101736, "Jur. advies + incassoburo bvji", "Coudenhoveflat 1", "1422VG, UITHOORN", "", "", "", "1"
|
|
893
|
+
], ["", "O", "", "", "", "", 101737, "Ramaker", "Meerweg 71", "2121VC, BENNEBROEK", "", "", "", "1"
|
|
894
|
+
], ["", "O", "", "", "", "", 101738, "Raoof", "Ladogameerhof 114", "1060RE, AMSTERDAM", "", "", "", "1"
|
|
895
|
+
], ["", "O", "", "", "", "", 101739, "Kars", "Oude pontweg 125", "1981AT, VELSEN-ZUID", "noreply@colijn-it.nl", "", "", "1"
|
|
896
|
+
], ["", "O", "", "", "", "", 101740, "Vermeiren", "Maerten v. heemskerckst 83", "2021ZH, HAARLEM", "", "", "", "1"
|
|
897
|
+
], ["", "O", "", "", "", "", 101741, "Boumans", "Wustelaan 46", "2082AD, SANTPOORT ZUID", "noreply@colijn-it.nl", "", "", "1"
|
|
898
|
+
], ["", "O", "", "", "", "", 101742, "van Duijn", "Tollensstraat 25", "2041PP, ZANDVOORT", "", "", "", "1"
|
|
899
|
+
], ["", "O", "", "", "", "", 101743, "Nieuwenhuizen", "Benedictijnenlaan 4", "2408KE, ALPHEN AAN DEN RIJN", "noreply@colijn-it.nl", "06-26706790", "", "1"
|
|
900
|
+
], ["", "O", "", "", "", "", 101744, "van Rutten", "Gedempte Oude Gracht 146", "2011GX, HAARLEM", "", "", "", "1"
|
|
901
|
+
], ["", "O", "", "", "", "", 101745, "Bell", "Dijkwacht 25", "2353EG, Leiderdorp", "", "", "", "1"
|
|
902
|
+
], ["", "O", "", "", "", "", 101746, "Coruz", "Samuel beckettstraat 3", "2037MC, HAARLEM", "", "", "", "1"
|
|
903
|
+
], ["", "O", "", "", "", "", 101747, "Zwart", "Haspelstraat 13", "2024HR, Haarlem", "", "", "", "1"
|
|
904
|
+
], ["", "O", "", "", "", "", 101748, "de Groot", "Le tourmalet 93", "1060NX, Amsterdam", "", "", "", "1"
|
|
905
|
+
], ["", "O", "", "", "", "", 101749, "Willemsen", "Tiranaplantsoen 123", "2034TL, HAARLEM", "", "", "", "1"
|
|
906
|
+
], ["", "O", "", "", "", "", 101750, "Tolk", "Hechtelstraat 42", "1066KL, Amsterdam", "", "", "", "1"
|
|
907
|
+
], ["", "O", "", "", "", "", 101751, "Koster", "Buitenhof 59", "1421LA, UITHOORN", "", "", "", "1"
|
|
908
|
+
], ["", "O", "", "", "", "", 101752, "van Harten", "Van Lijnden van Hemenstraat 7", "2132SJ, HOOFDDORP", "", "", "", "1"
|
|
909
|
+
], ["", "O", "", "", "", "", 101755, "de Jong", "Grevelingen 33", "2401DR, ALPHEN AAN DEN RIJN", "", "", "", "1"
|
|
910
|
+
], ["", "O", "", "", "", "", 101756, "van den Akker", "Rosa spierstraat 57", "2135TP, HOOFDDORP", "", "", "", "1"
|
|
911
|
+
], ["", "O", "", "", "", "", 101757, "Tandaju", "Bep van Klaverenstraat 1", "2134CM, HOOFDDORP", "", "", "", "1"
|
|
912
|
+
], ["", "O", "", "", "", "", 101758, "Hortensius", "Sumatrastraat 32", "2341XC, OEGSTGEEST", "noreply@colijn-it.nl", "", "", "1"
|
|
913
|
+
], ["", "O", "", "", "", "", 101759, "Speelmans", "Kabel 47", "2153MC, NIEUW VENNEP", "", "", "", "1"
|
|
914
|
+
], ["", "M", "", "", "", "", 10176, "Janssen", "Venloseweg 27", "5961 JB, HORST", "", "", "077-3984964", "1"
|
|
915
|
+
], ["", "O", "", "", "", "", 101760, "Ros", "Johan verhulstlaan 40", "2102XT, HEEMSTEDE", "noreply@colijn-it.nl", "", "", "1"
|
|
916
|
+
], ["", "O", "", "", "", "", 101761, "Mulstegen", "Spanjaardskrocht 55", "2211ET, NOORDWIJKERHOUT", "", "", "", "1"
|
|
917
|
+
], ["", "O", "", "", "", "", 101762, "van der Vlis", "Waardenburg 95", "2181LP, HILLEGOM", "", "", "", "1"
|
|
918
|
+
], ["", "O", "", "", "", "", 101763, "Willems", "Redenburgsingel 48", "2135AB, HOOFDDORP", "noreply@colijn-it.nl", "", "", "1"
|
|
919
|
+
], ["", "O", "", "", "", "", 101764, "Nieuwmeijer", "Sloterweg 64", "1171CS, BADHOEVEDORP", "noreply@colijn-it.nl", "06-81921521", "", "1"
|
|
920
|
+
], ["", "O", "", "", "", "", 101765, "Beetsschool", "Sportparklaan 1", "2103VR, Heemstede", "", "", "", "1"
|
|
921
|
+
], ["", "O", "", "", "", "", 101766, "Hoyer", "Balgzand 92", "2036KZ, HAARLEM", "", "", "", "1"
|
|
922
|
+
], ["", "O", "", "", "", "", 101767, "Bakker", "Van bemmelenstraat 20", "2152XA, Nieuw vennep", "", "", "", "1"
|
|
923
|
+
], ["", "O", "", "", "", "", 101768, "Alders", "Duinzicht 12", "2201LH, NOORDWIJK ZH", "", "", "", "1"
|
|
924
|
+
], ["", "O", "", "", "", "", 101769, "de Jong", "Mijndenhof 34", "1106GM, AMSTERDAM", "", "", "", "1"
|
|
925
|
+
], ["", "O", "", "", "", "", 101770, "Leeuwerink", "Floraronde 383", "1991LD, VELSERBROEK", "", "", "", "1"
|
|
926
|
+
], ["", "O", "", "", "", "", 101771, "Darlang", "Van den berghlaan 126", "2132AV, Hoofddorp", "", "", "", "1"
|
|
927
|
+
], ["", "O", "", "", "", "", 101772, "Onderwijzer", "Liesbos 92", "2134SC, HOOFDDORP", "", "", "", "1"
|
|
928
|
+
], ["", "O", "", "", "", "", 101773, "van der Pieterman", "Emostraat 41", "2033NP, Haarlem", "", "", "", "1"
|
|
929
|
+
], ["", "O", "", "", "", "", 101774, "Castien", "Grevelingstraat 146", "2161WX, LISSE", "noreply@colijn-it.nl", "", "", "1"
|
|
930
|
+
], ["", "O", "", "", "", "", 101775, "van der Oort", "Dorpsstraat 61", "1566AB, ASSENDELFT", "", "", "", "1"
|
|
931
|
+
], ["", "O", "", "", "", "", 101776, "Sheerbahadursing", "Rijnlandsoord 1", "1433NB, Kudelstaart", "", "", "", "1"
|
|
932
|
+
], ["", "O", "", "", "", "", 101777, "Schraverus", "Loenermark 421", "1025TL, Amsterdam", "", "", "", "1"
|
|
933
|
+
], ["", "O", "", "", "", "", 101778, "Koster", "Mathijsenstraat 33", "2035CL, HAARLEM", "", "", "", "1"
|
|
934
|
+
], ["", "O", "", "", "", "", 101779, "Steenhof", "Antje breijerstraat 28", "2132ZT, HOOFDDORP", "", "", "", "1"
|
|
935
|
+
], ["", "O", "", "", "", "", 101780, "Smits-blesgraaf", "Jacques perklaan 44", "2024JT, HAARLEM", "", "", "", "1"
|
|
936
|
+
], ["", "O", "", "", "", "", 101781, "Campmans", "Assumburg 9", "8226RA, LELYSTAD", "", "", "", "1"
|
|
937
|
+
], ["", "O", "", "", "", "", 101782, "Luk", "Romeinenstraat 57", "2025CG, Haarlem", "", "", "", "1"
|
|
938
|
+
], ["", "O", "", "", "", "", 101783, "Stefan", "Kruizemunt 10", "2201MX, Noordwijk", "", "", "", "1"
|
|
939
|
+
], ["", "O", "", "", "", "", 101784, "Meirmans", "Vierse Poort 3", "2152RP, NIEUW VENNEP", "noreply@colijn-it.nl", "", "", "1"
|
|
940
|
+
], ["", "O", "", "", "", "", 101785, "Warmenhoven", "Koekoeksbloem 22", "1422KP, UITHOORN", "noreply@colijn-it.nl", "06-22162558", "", "1"
|
|
941
|
+
], ["", "O", "", "", "", "", 101786, "Muller", "Briandflat 11", "1422TT, UITHOORN", "", "", "", "1"
|
|
942
|
+
], ["", "O", "", "", "", "", 101787, "Hartman", "Jan v.d. bergstraat 91", "2101XB, HEEMSTEDE", "", "", "", "1"
|
|
943
|
+
], ["", "O", "", "", "", "", 101788, "van Kouteren", "Grote Boerbloem 47", "1991LJ, VELSERBROEK", "", "", "", "1"
|
|
944
|
+
], ["", "O", "", "", "", "", 101789, "Kamper", "Leidse vaart 1", "2114AK, VOGELENZANG", "", "", "", "1"
|
|
945
|
+
], ["", "O", "", "", "", "", 101790, "Dijkman", "Hospeslaan 9", "2015GH, HAARLEM", "", "", "", "1"
|
|
946
|
+
], ["", "O", "", "", "", "", 101791, "Buitink", "Van spanjelaan 40", "3526XM, UTRECHT", "", "", "", "1"
|
|
947
|
+
], ["", "O", "", "", "", "", 101792, "Peters", "Kas 45", "1431MB, AALSMEER", "", "", "", "1"
|
|
948
|
+
], ["", "O", "", "", "", "", 101793, "Elzinga", "Nic. beetsplein 8", "2103SJ, HEEMSTEDE", "", "", "", "1"
|
|
949
|
+
], ["", "O", "", "", "", "", 101794, "Spek", "Otweg 383", "1435GT, Rijsenhout", "", "", "", "1"
|
|
950
|
+
], ["", "O", "", "", "", "", 101795, "Jeursen", "Bestevaerstraat 109", "1056HL, AMSTERDAM", "", "", "", "1"
|
|
951
|
+
], ["", "O", "", "", "", "", 101796, "van der Hulst", "Ger van duinstraat 9", "2132ZR, Hoofddorp", "", "", "", "1"
|
|
952
|
+
], ["", "O", "", "", "", "", 101797, "van Doornik", "Waterranonkel 4", "1991GP, Velserbroek", "", "", "", "1"
|
|
953
|
+
], ["", "O", "", "", "", "", 101798, "Ponstein", "Engelandlaan 406", "2034NN, HAARLEM", "", "", "", "1"
|
|
954
|
+
], ["", "O", "", "", "", "", 101799, "Roos", "Count Basiestraat 24", "1066GM, AMSTERDAM", "", "", "", "1"
|
|
955
|
+
], ["", "O", "", "", "", "", 101800, "Henke", "Brenner 36", "1060NV, Amsterdam", "", "", "", "1"
|
|
956
|
+
], ["", "O", "", "", "", "", 101801, "Bos", "Zonnedauw 114", "1422PP, UITHOORN", "", "", "", "1"
|
|
957
|
+
], ["", "O", "", "", "", "", 101802, "van der Salm", "Bloembinderspark 53", "2161XR, LISSE", "noreply@colijn-it.nl", "", "", "1"
|
|
958
|
+
], ["", "O", "", "", "", "", 101803, "Ghazil", "Het Oord 104", "2134ZG, HOOFDDORP", "", "", "", "1"
|
|
959
|
+
], ["", "O", "", "", "", "", 101804, "Eisen", "Fluitekruid 18", "3641VK, MIJDRECHT", "", "", "", "1"
|
|
960
|
+
], ["", "O", "", "", "", "", 101805, "van Dommelen", "Ambrosiuslaan 127", "1185PJ, AMSTELVEEN", "", "", "", "1"
|
|
961
|
+
], ["", "O", "", "", "", "", 101806, "Stam", "Hechtelstraat 102", "1066KM, Amsterdam", "", "", "", "1"
|
|
962
|
+
], ["", "O", "", "", "", "", 101807, "Jungen", "Niftrikhof 43", "1106SG, AMSTERDAM", "", "", "", "1"
|
|
963
|
+
], ["", "O", "", "", "", "", 101808, "Lekkerkerker", "Toon Hermanslaan 5", "1948AC, BEVERWIJK", "", "", "", "1"
|
|
964
|
+
], ["", "O", "", "", "", "", 101809, "Siegel", "Hoofdweg 1302", "2153LS, NIEUW VENNEP", "", "", "", "1"
|
|
965
|
+
], ["", "O", "", "", "", "", 101810, "Stokman", "Floraronde 25", "1991HH, VELSERBROEK", "", "", "", "1"
|
|
966
|
+
], ["", "O", "", "", "", "", 101811, "Loos", "Flemingstraat 346", "2041VT, ZANDVOORT", "", "", "", "1"
|
|
967
|
+
], ["", "O", "", "", "", "", 101812, "Rogaar", "Laurens costerstraat 11", "2014XW, HAARLEM", "", "", "", "1"
|
|
968
|
+
], ["", "O", "", "", "", "", 101813, "v.d. Boom", "Westerdreef 28", "2152CS, NIEUW VENNEP", "", "", "", "1"
|
|
969
|
+
], ["", "O", "", "", "", "", 101814, "v.d. Worp", "Leonard springerlaan 67", "2033TB, Haarlem", "", "", "", "1"
|
|
970
|
+
], ["", "O", "", "", "", "", 101815, "Lansen", "Tarwekamp 84", "1112HG, Diemen", "", "", "", "1"
|
|
971
|
+
], ["", "O", "", "", "", "", 101816, "Elkordi", "Atletiekstraat 33", "2134CA, HOOFDDORP", "", "", "", "1"
|
|
972
|
+
], ["", "O", "", "", "", "", 101817, "Hetem", "Vrijheidsweg 108", "2033CE, Haarlem", "", "", "", "1"
|
|
973
|
+
], ["", "O", "", "", "", "", 101818, "Brouwer", "Uiterweg 417", "1431AM, Aalsmeer", "", "", "", "1"
|
|
974
|
+
], ["", "O", "", "", "", "", 101819, "Schrama", "Prinses marijkestraat 73", "2181RS, HILLEGOM", "", "", "", "1"
|
|
975
|
+
], ["", "O", "", "", "", "", 101820, "Teeuwen", "Zilkerduinweg 370", "2191AV, De zilk", "", "", "", "1"
|
|
976
|
+
], ["", "O", "", "", "", "", 101821, "Wusten", "Johan Hofmanstraat 344", "1069KE, AMSTERDAM", "", "", "", "1"
|
|
977
|
+
], ["", "O", "", "", "", "", 101822, "van Wijngaarden", "Marjoleinlaan 44", "1187EJ, AMSTELVEEN", "noreply@colijn-it.nl", "", "", "1"
|
|
978
|
+
], ["", "O", "", "", "", "", 101823, "Stricker", "Manegelaan 45", "2131XA, HOOFDDORP", "", "", "", "1"
|
|
979
|
+
], ["", "O", "", "", "", "", 101824, "de Graaf", "Iepenlaan 16", "1161TD, ZWANENBURG", "", "", "", "1"
|
|
980
|
+
], ["", "O", "", "", "", "", 101825, "Beuk", "Wilgenlaan 48", "2451CA, LEIMUIDEN", "", "", "", "1"
|
|
981
|
+
], ["", "O", "", "", "", "", 101826, "Beuk", "Dr. Stapenseastraat 29", "2451AC, LEIMUIDEN", "", "", "", "1"
|
|
982
|
+
], ["", "O", "", "", "", "", 101827, "Collet", "Willem pijperlaan 4", "2102XP, HEEMSTEDE", "", "", "", "1"
|
|
983
|
+
], ["", "O", "", "", "", "", 101828, "Wijnen", "Windvorst 17", "2131HX, Hoofddorp", "", "", "", "1"
|
|
984
|
+
], ["", "O", "", "", "", "", 101829, "de Jong", "Dellaertlaan 140", "1171HK, BADHOEVEDORP", "", "", "", "1"
|
|
985
|
+
], ["", "O", "", "", "", "", 101830, "Vlasveld", "Hofpoort 2", "2152HH, NIEUW VENNEP", "noreply@colijn-it.nl", "06-12724643", "", "1"
|
|
986
|
+
], ["", "O", "", "", "", "", 101831, "Verkruisen", "Engelenburg 379", "2036RM, HAARLEM", "", "", "", "1"
|
|
987
|
+
], ["", "O", "", "", "", "", 101832, "Rietvink", "Zaanenstraat 145", "2022CN, HAARLEM", "", "", "", "1"
|
|
988
|
+
], ["", "O", "", "", "", "", 101833, "Dulmus", "Raadhuislaan 2", "3641EH, MIJDRECHT", "", "", "", "1"
|
|
989
|
+
], ["", "O", "", "", "", "", 101834, "Admiraal", "Valkenburgerplein 5", "2103AS, HEEMSTEDE", "", "", "", "1"
|
|
990
|
+
], ["", "O", "", "", "", "", 101835, "Maaskant", "Aalsmeerderweg 810", "1435ET, RIJSENHOUT", "", "", "", "1"
|
|
991
|
+
], ["", "O", "", "", "", "", 101836, "Ostendorf", "E. Rooseveltlaan 83", "1183CE, AMSTELVEEN", "", "", "", "1"
|
|
992
|
+
], ["", "O", "", "", "", "", 101837, "Boersma", "Sperwerstraat 30", "1171TE, BADHOEVEDORP", "", "", "", "1"
|
|
993
|
+
], ["", "O", "", "", "", "", 101838, "van Ruiten", "Boekenrode 161", "2215JD, Voorhout", "", "", "", "1"
|
|
994
|
+
], ["", "O", "", "", "", "", 101839, "van Leeuwen", "Dahlialaan 28", "2111ZP, AERDENHOUT", "", "", "", "1"
|
|
995
|
+
], ["", "O", "", "", "", "", 101840, "Herscheid", "Westwijkplein 110", "1187LW, AMSTELVEEN", "", "", "", "1"
|
|
996
|
+
], ["", "O", "", "", "", "", 101841, "de Vries", "Dopheidestraat 32", "2165VP, LISSERBROEK", "", "", "", "1"
|
|
997
|
+
], ["", "O", "", "", "", "", 101842, "Bieckmann", "Beethovenlaan 22", "1431WX, AALSMEER", "", "", "", "1"
|
|
998
|
+
], ["", "O", "", "", "", "", 101843, "Bosman", "Turnhoutplantsoen 98", "1066NV, AMSTERDAM", "noreply@colijn-it.nl", "0623223875", "", "1"
|
|
999
|
+
], ["", "O", "", "", "", "", 101844, "van Bueren", "Schans 77", "2141MZ, VIJFHUIZEN NH", "", "", "", "1"
|
|
1000
|
+
], ["", "O", "", "", "", "", 101845, "Koens", "Frans Halsstraat 51", "2162CL, LISSE", "noreply@colijn-it.nl", "06-48568096", "", "1"
|
|
1001
|
+
], ["", "O", "", "", "", "", 101846, "Pel", "Naxos 27", "2134AM, HOOFDDORP", "", "", "", "1"
|
|
1002
|
+
], ["", "O", "", "", "", "", 101847, "Postma", "Lakenkopersweg 20", "1383CS, WEESP", "", "", "", "1"
|
|
1003
|
+
], ["", "O", "", "", "", "", 101848, "Noortman", "Dr. Schaepmanstraat 153", "2032GG, HAARLEM", "noreply@colijn-it.nl", "", "", "1"
|
|
1004
|
+
], ["", "O", "", "", "", "", 101849, "Biefstraaten", "Schravendijkdreef 365", "1104DN, AMSTERDAM ZUIDOOST", "", "", "", "1"
|
|
1005
|
+
], ["", "O", "", "", "", "", 101850, "van Schie", "Weidemolen 19", "2211PW, NOORDWIJKERHOUT", "noreply@colijn-it.nl", "", "", "1"
|
|
1006
|
+
], ["", "O", "", "", "", "", 101851, "Duindam", "Dr. Neijestraat 57", "2064XB, SPAARNDAM", "", "", "", "1"
|
|
1007
|
+
], ["", "O", "", "", "", "", 101852, "Vonk", "Vijverbos 6", "2134GS, HOOFDDORP", "", "", "", "1"
|
|
1008
|
+
], ["", "O", "", "", "", "", 101853, "Soen-barend", "Jan van galenstraat 45", "2014AG, Haarlem", "", "", "", "1"
|
|
1009
|
+
], ["", "O", "", "", "", "", 101854, "van den Bos", "Lariksstraat 13", "1971JR, IJMUIDEN", "", "", "", "1"
|
|
1010
|
+
], ["", "O", "", "", "", "", 101855, "van Dam", "Havenstraat 78", "2211EJ, NOORDWIJKERHOUT", "noreply@colijn-it.nl", "", "", "1"
|
|
1011
|
+
], ["", "O", "", "", "", "", 101856, "Langereis", "J.P. Sweelincksingel 30", "2132KL, HOOFDDORP", "", "", "", "1"
|
|
1012
|
+
], ["", "O", "", "", "", "", 101857, "Griekspoor", "Weegschaal 36", "2163BR, LISSE", "noreply@colijn-it.nl", "", "", "1"
|
|
1013
|
+
], ["", "O", "", "", "", "", 101858, "Schop", "Alholm 11", "2133DA, HOOFDDORP", "noreply@colijn-it.nl", "06-38659284", "", "1"
|
|
1014
|
+
], ["", "O", "", "", "", "", 101859, "Schenke", "Heerlenstraat 51", "1324MD, ALMERE", "", "", "", "1"
|
|
1015
|
+
], ["", "O", "", "", "", "", 101860, "Broer", "Floris van Adrichemlaan 15", "2035VB, HAARLEM", "", "", "", "1"
|
|
1016
|
+
], ["", "O", "", "", "", "", 101861, "Willems", "Redenburgsingel 48", "2135AB, HOOFDDORP", "", "", "", "1"
|
|
1017
|
+
], ["", "O", "", "", "", "", 101862, "Stefan", "Kruizemunt 10", "2201MX, Noordwijk", "", "", "", "1"
|
|
1018
|
+
], ["", "O", "", "", "", "", 101863, "van Beek", "Grahamstraat 135", "1973RA, Ijmuiden", "", "", "", "1"
|
|
1019
|
+
], ["", "O", "", "", "", "", 101864, "Vreugd", "Nabuccosingel 171", "2152PB, Nieuw vennep", "", "", "", "1"
|
|
1020
|
+
], ["", "O", "", "", "", "", 101865, "Reydon", "Havenstraat 31", "2101LA, Heemstede", "", "", "", "1"
|
|
1021
|
+
], ["", "O", "", "", "", "", 101866, "Polotzek", "Havenstraat 62", "2211FJ, NOORDWIJKERHOUT", "", "", "", "1"
|
|
1022
|
+
], ["", "O", "", "", "", "", 101867, "van der Putten", "Gandhistraat 12", "2037JJ, HAARLEM", "", "", "", "1"
|
|
1023
|
+
], ["", "O", "", "", "", "", 101868, "van Heusden", "Clematislaan 1", "2111BD, AERDENHOUT", "", "", "", "1"
|
|
1024
|
+
], ["", "O", "", "", "", "", 101869, "Broxterman", "Jan v.d. Horststraat 34", "2035RX, HAARLEM", "noreply@colijn-it.nl", "", "", "1"
|
|
1025
|
+
], ["", "O", "", "", "", "", 101870, "Radix", "De Wetstraat 26", "1975DM, IJMUIDEN", "", "", "", "1"
|
|
1026
|
+
], ["", "O", "", "", "", "", 101871, "Dessing", "J.C. Beetslaan 45", "2131AH, HOOFDDORP", "", "", "", "1"
|
|
1027
|
+
], ["", "O", "", "", "", "", 101872, "Heukels", "Zandlaan 26", "2121VS, Bennebroek", "", "", "", "1"
|
|
1028
|
+
], ["", "O", "", "", "", "", 101873, "van Gastel", "Huizingalaan 13", "2105SG, HEEMSTEDE", "", "", "", "1"
|
|
1029
|
+
], ["", "O", "", "", "", "", 101874, "Mast", "Prof. kouwerstraat 18", "2035CC, HAARLEM", "", "", "", "1"
|
|
1030
|
+
], ["", "O", "", "", "", "", 101875, "Colijn", "Hoogewaard 140", "2396AN, KOUDEKERK AAN DEN RIJN", "", "", "", "1"
|
|
1031
|
+
], ["", "O", "", "", "", "", 101876, "v.d. Ruit", "Barnsteen 14", "3643AT, MIJDRECHT", "", "", "", "1"
|
|
1032
|
+
], ["", "O", "", "", "", "", 101877, "Pereira", "Crhristine Koetsstraat 62", "2036AB, HAARLEM", "", "", "", "1"
|
|
1033
|
+
], ["", "O", "", "", "", "", 101878, "van Raalte", "Min. lelylaant 8", "1981BK, VELSEN-ZUID", "", "", "", "1"
|
|
1034
|
+
], ["", "O", "", "", "", "", 101879, "Kok", "Hogeweg 39", "2042GE, ZANDVOORT", "", "", "", "1"
|
|
1035
|
+
], ["", "O", "", "", "", "", 101880, "de Waard", "G. van Amstelstraat 46", "2026VH, HAARLEM", "", "", "", "1"
|
|
1036
|
+
], ["", "O", "", "", "", "", 101881, "Slavenburg", "Stevensstraat 43", "2841CS, MOORDRECHT", "", "06-11758498", "", "1"
|
|
1037
|
+
], ["", "O", "", "", "", "", 101882, "van Kalkeren", "Maarten van Heemskerckstraat 81", "2021ZH, HAARLEM", "noreply@colijn-it.nl", "06-10876158", "", "1"
|
|
1038
|
+
], ["", "O", "", "", "", "", 101883, "Nunnikhoven", "Aalsmeerderdijk 504", "1435BA, RIJSENHOUT", "noreply@colijn-it.nl", "", "", "1"
|
|
1039
|
+
], ["", "O", "", "", "", "", 101884, "van der Poll", "Vivaldistraat 45", "2162AB, Lisse", "", "", "", "1"
|
|
1040
|
+
], ["", "O", "", "", "", "", 101885, "Nachtegaal", "Havenkade 15", "1973AH, IJMUIDEN", "noreply@colijn-it.nl", "06-83577224", "", "1"
|
|
1041
|
+
], ["", "O", "", "", "", "", 101886, "Straus", "L. Springerstraat 22", "1992BW, VELSERBROEK", "noreply@colijn-it.nl", "", "", "1"
|
|
1042
|
+
], ["", "O", "", "", "", "", 101888, "van Schaardenburgh", "Wittenburg 54", "2135BD, HOOFDDORP", "noreply@colijn-it.nl", "", "", "1"
|
|
1043
|
+
], ["", "O", "", "", "", "", 101889, "Cetin", "Valkenisseweg 127", "1069BX, Amsterdam", "", "", "", "1"
|
|
1044
|
+
], ["", "O", "", "", "", "", 101891, "Zeinstra", "Lisserweg 696", "2165AV, Lisserbroek", "", "", "", "1"
|
|
1045
|
+
], ["", "O", "", "", "", "", 101892, "van Donselaar", "Volgt nog 9999999999", "1390AA, ABCOUDE", "", "", "", "1"
|
|
1046
|
+
], ["", "O", "", "", "", "", 101893, "Makkelie", "Oude schipholweg 1036", "2141BG, VIJFHUIZEN NH", "", "", "", "1"
|
|
1047
|
+
], ["", "O", "", "", "", "", 101894, "Lagendijk", "Roosterbos 53", "2134EW, HOOFDDORP", "", "", "", "1"
|
|
1048
|
+
], ["", "O", "", "", "", "", 101895, "Voet", "Bloemendaalseweg 36", "2061CL, BLOEMENDAAL ZH", "", "", "", "1"
|
|
1049
|
+
], ["", "O", "", "", "", "", 101896, "Koeleveld", "Graan voor Visch 17503", "2132ZK, HOOFDDORP", "noreply@colijn-it.nl", "", "", "1"
|
|
1050
|
+
], ["", "O", "", "", "", "", 101897, "de Boer", "Verspronckweg 65", "2023BB, Haarlem", "", "", "", "1"
|
|
1051
|
+
], ["", "O", "", "", "", "", 101898, "van Etten Beheer", "Stadionweg 156", "1077TH, AMSTERDAM", "", "", "", "1"
|
|
1052
|
+
], ["", "O", "", "", "", "", 101899, "Zonneveld", "Prins bernhardstraat 35", "2181RH, HILLEGOM", "", "", "", "1"
|
|
1053
|
+
], ["", "O", "", "", "", "", 101900, "Poesiat", "Graan voor Visch 16232", "2132XL, HOOFDDORP", "", "", "", "1"
|
|
1054
|
+
], ["", "O", "", "", "", "", 101901, "Kramer", "Barentszstraat 52", "2161TM, Lisse", "", "", "", "1"
|
|
1055
|
+
], ["", "O", "", "", "", "", 101902, "Teeuwen", "Albert schweitzerlaan 2", "2037RS, Haarlem", "", "", "", "1"
|
|
1056
|
+
], ["", "O", "", "", "", "", 101904, "Teves", "Crayenesterlaan 132", "2012TL, HAARLEM", "", "", "", "1"
|
|
1057
|
+
], ["", "O", "", "", "", "", 101905, "Bodemheim", "Wagnerkade 51", "2102CT, HEEMSTEDE", "", "", "", "1"
|
|
1058
|
+
], ["", "O", "", "", "", "", 101907, "Klein-Langevelsloo", "Aalsmeerderweg 682", "1435ER, RIJSENHOUT", "", "", "", "1"
|
|
1059
|
+
], ["", "O", "", "", "", "", 101908, "van Trappen", "Schoonenburgsingel 31", "2135GA, Hoofddorp", "", "", "", "1"
|
|
1060
|
+
], ["", "O", "", "", "", "", 101909, "van der Valk", "Kempstraat 22", "2023ES, Haarlem", "", "", "", "1"
|
|
1061
|
+
], ["", "O", "", "", "", "", 101910, "Snijders", "Ottenstein 52", "2151HP, Nieuw vennep", "", "", "", "1"
|
|
1062
|
+
], ["", "O", "", "", "", "", 101911, "Plug", "Wolframstraat 13", "1972RN, IJMUIDEN", "", "", "", "1"
|
|
1063
|
+
], ["", "O", "", "", "", "", 101913, "van Aken", "Carnapstraat 133", "1062KX, Amsterdam", "", "", "", "1"
|
|
1064
|
+
], ["", "O", "", "", "", "", 101914, "Hoogmoed", "Piratenweg 140", "2132TV, HOOFDDORP", "", "", "", "1"
|
|
1065
|
+
], ["", "O", "", "", "", "", 101915, "Padberg", "IJweg 34", "1161GA, ZWANENBURG", "", "", "", "1"
|
|
1066
|
+
], ["", "O", "", "", "", "", 101917, "MHM Onroerend Goed", "Vijzelmolenlaan 6", "3447GX, Woerden", "", "", "", "1"
|
|
1067
|
+
], ["", "O", "", "", "", "", 101918, "MHM. Onroerend Goed", "Vijzelmolenlaan 6", "3447GX, Woerden", "", "", "", "1"
|
|
1068
|
+
], ["", "O", "", "", "", "", 101919, "van der Stel", "Zwaanstein 48", "2151HH, Nieuw vennep", "", "", "", "1"
|
|
1069
|
+
], ["", "O", "", "", "", "", 101921, "MHM Onroerend goed", "Vijzelmolenlaan 6", "3447GX, Woerden", "", "", "", "1"
|
|
1070
|
+
], ["", "O", "", "", "", "", 101922, "Koning", "Scheeperstraat 24", "2021BJ, HAARLEM", "", "", "", "1"
|
|
1071
|
+
], ["", "O", "", "", "", "", 101923, "Rijksen", "Pr. mauritslaan 2", "2012SP, Haarlem", "", "", "", "1"
|
|
1072
|
+
], ["", "O", "", "", "", "", 101924, "van der Tol", "Lichterstraat 39", "2151BS, Nieuw vennep", "", "", "", "1"
|
|
1073
|
+
], ["", "O", "", "", "", "", 101925, "Venneker", "Edelenburg 67", "2135EB, Hoofddorp", "", "", "", "1"
|
|
1074
|
+
], ["", "O", "", "", "", "", 101926, "Mhm. onroerend goed", "Vijzelmolenlaan 6", "3447GX, Woerden", "", "", "", "1"
|
|
1075
|
+
], ["", "O", "", "", "", "", 101927, "MHM Onroerend goed", "Vijzelmolenlaan 6", "3447GX, Woerden", "", "", "", "1"
|
|
1076
|
+
], ["", "O", "", "", "", "", 101928, "van Zutphen", "Kievitspark 38", "2215NK, Voorhout", "", "", "", "1"
|
|
1077
|
+
], ["", "O", "", "", "", "", 101929, "van Tongeren", "M. vaumontlaan 104", "2101EG, HEEMSTEDE", "", "", "", "1"
|
|
1078
|
+
], ["", "O", "", "", "", "", 101930, "Abgelina", "Bramerveld 43", "2151LA, Nieuw vennep", "", "", "", "1"
|
|
1079
|
+
], ["", "O", "", "", "", "", 101931, "Rusbach", "Glipperweg 27", "2104AG, HEEMSTEDE", "", "", "", "1"
|
|
1080
|
+
], ["", "O", "", "", "", "", 101932, "Wijnands", "Van dalenlaan 57", "2082VB, SANTPOORT ZUID", "", "", "", "1"
|
|
1081
|
+
], ["", "O", "", "", "", "", 101933, "van Opzeeland", "Eksterlaan 194", "2026XL, HAARLEM", "", "", "", "1"
|
|
1082
|
+
], ["", "O", "", "", "", "", 101934, "Sanbrink", "Javalaan 40", "2103VK, HEEMSTEDE", "", "", "", "1"
|
|
1083
|
+
], ["", "O", "", "", "", "", 101935, "Voors", "Stadhouderpoort 11", "2152RV, NIEUW VENNEP", "", "", "", "1"
|
|
1084
|
+
], ["", "O", "", "", "", "", 101936, "Broekhof", "Groenewege 126", "2211EP, Noordwijkerhout", "", "", "", "1"
|
|
1085
|
+
], ["", "O", "", "", "", "", 101987, "van Heteren", "Anemoonlaan 12", "1171WE, BADHOEVEDORP", "noreply@colijn-it.nl", "06-22834877", "", "1"
|
|
1086
|
+
], ["", "O", "", "", "", "", 101989, "Benning", "Julianaweg 57", "1949AN, Wijk aan zee", "", "", "", "1"
|
|
1087
|
+
], ["", "O", "", "", "", "", 102074, "Kievit", "Zuiderkruis 62", "2163AH, Lisse", "", "", "", "1"
|
|
1088
|
+
]
|
|
1089
|
+
];
|
|
1090
|
+
data.forEach((d: string[]) => {
|
|
1091
|
+
const row: {} = {
|
|
1092
|
+
Geboortedatum: d[0],
|
|
1093
|
+
Geslacht: d[1],
|
|
1094
|
+
DienstverbandStartdatum: d[2],
|
|
1095
|
+
DienstverbandEinddatum: d[3],
|
|
1096
|
+
FTE: d[4],
|
|
1097
|
+
Text: d[5],
|
|
1098
|
+
Nummer: d[6],
|
|
1099
|
+
Naam: d[7],
|
|
1100
|
+
Straat: d[8],
|
|
1101
|
+
PostcodePlaats: d[9],
|
|
1102
|
+
Email: d[10],
|
|
1103
|
+
Mobiel: d[11],
|
|
1104
|
+
Telefoon: d[12],
|
|
1105
|
+
countryId: d[14]
|
|
1106
|
+
}
|
|
1107
|
+
this.gridData.push(row);
|
|
1108
|
+
});
|
|
1109
|
+
}
|
|
1110
|
+
}
|