diff --git a/README.md b/README.md index 9de9c8133..9bc65d5ee 100644 --- a/README.md +++ b/README.md @@ -17,21 +17,23 @@ ~ 快速开始 ``` - pip install -r requirements.txt + pip install -r requirements.txt # Install pip module - cp config-example.py config.py + yum -y install `cat rpm_requirements.txt` # Install rpm package - cd apps && python manage.py makemigrations + cp config-example.py config.py # Prepaire config from example config - python manage.py migrate + cd apps && python manage.py makemigrations # Make migrations for django - python manage.py loaddata init + python manage.py migrate # Migrate ORM to database - python manage.py loadata fake + python manage.py loaddata init # Init some data + + python manage.py loaddata fake # Generake some fake data yum -y install redis && service redis start # Or install redis docker - python manage.py runserver 0.0.0.0:80 + python manage.py runserver 0.0.0.0:80 # Run it ``` diff --git a/apps/assets/api.py b/apps/assets/api.py index 4771f222e..0d427b91f 100644 --- a/apps/assets/api.py +++ b/apps/assets/api.py @@ -4,41 +4,48 @@ from rest_framework import viewsets, generics, mixins from rest_framework.response import Response from rest_framework.views import APIView +from rest_framework_bulk import BulkModelViewSet, BulkDestroyAPIView +from django_filters.rest_framework import DjangoFilterBackend from rest_framework_bulk import BulkListSerializer, BulkSerializerMixin, ListBulkCreateUpdateDestroyAPIView from django.shortcuts import get_object_or_404 from common.mixins import IDInFilterMixin from common.utils import get_object_or_none, signer -from .hands import IsSuperUserOrAppUser, IsSuperUser -from .models import AssetGroup, Asset, IDC, SystemUser, AdminUser +from .hands import IsSuperUser, IsAppUser +from .models import AssetGroup, Asset, IDC, SystemUser, AdminUser, Tag from . import serializers -class AssetViewSet(IDInFilterMixin, viewsets.ModelViewSet): +class AssetViewSet(IDInFilterMixin, BulkModelViewSet): """API endpoint that allows Asset to be viewed or edited.""" queryset = Asset.objects.all() serializer_class = serializers.AssetSerializer - filter_fields = ('id', 'ip', 'hostname') - permission_classes = (IsSuperUserOrAppUser,) + permission_classes = (IsSuperUser,) def get_queryset(self): queryset = super(AssetViewSet, self).get_queryset() idc_id = self.request.query_params.get('idc_id', '') + tags_id = self.request.query_params.get('tag_id', '') + system_users_id = self.request.query_params.get('system_user_id', '') asset_group_id = self.request.query_params.get('asset_group_id', '') + admin_user_id = self.request.query_params.get('admin_user_id', '') if idc_id: queryset = queryset.filter(idc__id=idc_id) - + if tags_id: + queryset = queryset.filter(tags__id=tags_id) + if system_users_id: + queryset = queryset.filter(system_users__id=system_users_id) + if admin_user_id: + queryset = queryset.filter(admin_user__id=admin_user_id) if asset_group_id: queryset = queryset.filter(groups__id=asset_group_id) return queryset -class AssetGroupViewSet(viewsets.ModelViewSet): - """ API endpoint that allows AssetGroup to be viewed or edited. - some other comment - """ +class AssetGroupViewSet(IDInFilterMixin, BulkModelViewSet): queryset = AssetGroup.objects.all() serializer_class = serializers.AssetGroupSerializer + permission_classes = (IsSuperUser,) class AssetUpdateGroupApi(generics.RetrieveUpdateAPIView): @@ -47,20 +54,41 @@ class AssetUpdateGroupApi(generics.RetrieveUpdateAPIView): permission_classes = (IsSuperUser,) -class IDCViewSet(viewsets.ModelViewSet): +## update the asset group, and add or delete the asset to the group +class AssetGroupUpdateApi(generics.RetrieveUpdateAPIView): + queryset = AssetGroup.objects.all() + serializer_class = serializers.AssetGroupUpdateSerializer + permission_classes = (IsSuperUser,) + + +## update the asset group, and add or delete the system_user to the group +class AssetGroupUpdateSystemUserApi(generics.RetrieveUpdateAPIView): + queryset = AssetGroup.objects.all() + serializer_class = serializers.AssetGroupUpdateSystemUserSerializer + permission_classes = (IsSuperUser,) + + +## update the IDC, and add or delete the assets to the IDC +class IDCupdateAssetsApi(generics.RetrieveUpdateAPIView): + queryset = IDC.objects.all() + serializer_class = serializers.IDCUpdateAssetsSerializer + permission_classes = (IsSuperUser,) + + +class IDCViewSet(IDInFilterMixin, BulkModelViewSet): """API endpoint that allows IDC to be viewed or edited.""" queryset = IDC.objects.all() serializer_class = serializers.IDCSerializer permission_classes = (IsSuperUser,) -class AdminUserViewSet(viewsets.ModelViewSet): +class AdminUserViewSet(IDInFilterMixin, BulkModelViewSet): queryset = AdminUser.objects.all() serializer_class = serializers.AdminUserSerializer permission_classes = (IsSuperUser,) -class SystemUserViewSet(viewsets.ModelViewSet): +class SystemUserViewSet(IDInFilterMixin, BulkModelViewSet): queryset = SystemUser.objects.all() serializer_class = serializers.SystemUserSerializer permission_classes = (IsSuperUser,) @@ -72,6 +100,18 @@ class SystemUserUpdateApi(generics.RetrieveUpdateAPIView): permission_classes = (IsSuperUser,) +class SystemUserUpdateAssetsApi(generics.RetrieveUpdateAPIView): + queryset = SystemUser.objects.all() + serializer_class = serializers.SystemUserUpdateAssetsSerializer + permission_classes = (IsSuperUser,) + + +class SystemUserUpdateAssetGroupApi(generics.RetrieveUpdateAPIView): + queryset = SystemUser.objects.all() + serializer_class = serializers.SystemUserUpdateAssetGroupSerializer + permission_classes = (IsSuperUser,) + + # class IDCAssetsApi(generics.ListAPIView): # model = IDC # serializer_class = serializers.AssetSerializer @@ -93,7 +133,7 @@ class AssetListUpdateApi(IDInFilterMixin, ListBulkCreateUpdateDestroyAPIView): class SystemUserAuthInfoApi(generics.RetrieveAPIView): queryset = SystemUser.objects.all() - permission_classes = (IsSuperUserOrAppUser,) + permission_classes = (IsAppUser,) def retrieve(self, request, *args, **kwargs): system_user = self.get_object() @@ -107,3 +147,16 @@ class SystemUserAuthInfoApi(generics.RetrieveAPIView): } return Response(data) + +class TagViewSet(IDInFilterMixin, BulkModelViewSet): + queryset = Tag.objects.all() + serializer_class = serializers.TagSerializer + permission_classes = (IsSuperUser,) + + +## update the IDC, and add or delete the assets to the IDC +class TagUpdateAssetsApi(generics.RetrieveUpdateAPIView): + queryset = Tag.objects.all() + serializer_class = serializers.TagUpdateAssetsSerializer + permission_classes = (IsSuperUser,) + diff --git a/apps/assets/forms.py b/apps/assets/forms.py index acbdd3aec..ef9427e48 100644 --- a/apps/assets/forms.py +++ b/apps/assets/forms.py @@ -37,6 +37,14 @@ class AssetCreateForm(forms.ModelForm): self.instance.tags.clear() self.instance.tags.add(*tuple(tags)) + def clean(self): + clean_data = super(AssetCreateForm, self).clean() + ip = clean_data.get('ip') + port = clean_data.get('port') + query = Asset.objects.filter(ip=ip, port=port) + if query: + raise forms.ValidationError('this asset has exists.') + class Meta: model = Asset tags = forms.ModelMultipleChoiceField(queryset=Tag.objects.all()) @@ -293,10 +301,10 @@ class AssetTagForm(forms.ModelForm): super(AssetTagForm, self).__init__(*args, **kwargs) def _save_m2m(self): - super(AssetTagForm, self)._save_m2m() assets = self.cleaned_data['assets'] - self.instance.asset_set.clear() - self.instance.asset_set.add(*tuple(assets)) + self.instance.assets.clear() + self.instance.assets.add(*tuple(assets)) + super(AssetTagForm, self)._save_m2m() class Meta: model = Tag @@ -313,4 +321,4 @@ class AssetTagForm(forms.ModelForm): class FileForm(forms.Form): - file = forms.FileField() \ No newline at end of file + file = forms.FileField() diff --git a/apps/assets/hands.py b/apps/assets/hands.py index 4536dc1bc..633a995f6 100644 --- a/apps/assets/hands.py +++ b/apps/assets/hands.py @@ -12,5 +12,5 @@ from users.utils import AdminUserRequiredMixin -from users.permissions import IsSuperUserOrAppUser, IsSuperUser +from users.permissions import IsAppUser, IsSuperUser from users.models import User, UserGroup diff --git a/apps/assets/models/asset.py b/apps/assets/models/asset.py index f38ca798b..da1ee37d6 100644 --- a/apps/assets/models/asset.py +++ b/apps/assets/models/asset.py @@ -68,7 +68,7 @@ class Asset(models.Model): is_active = models.BooleanField(default=True, verbose_name=_('Is active')) date_created = models.DateTimeField(auto_now_add=True, null=True, blank=True, verbose_name=_('Date added')) comment = models.TextField(max_length=128, default='', blank=True, verbose_name=_('Comment')) - tags = models.ManyToManyField('Tag', blank=True, verbose_name=_('Tags')) + tags = models.ManyToManyField('Tag', related_name='assets', blank=True, verbose_name=_('Tags')) def __unicode__(self): return '%(ip)s:%(port)s' % {'ip': self.ip, 'port': self.port} @@ -125,4 +125,4 @@ class Tag(models.Model): __str__ = __unicode__ class Meta: - ordering = ['name'] + db_table = 'tag' diff --git a/apps/assets/models/utils.py b/apps/assets/models/utils.py index fc78ea39c..ed2727cdb 100644 --- a/apps/assets/models/utils.py +++ b/apps/assets/models/utils.py @@ -15,8 +15,8 @@ def initial(): def generate_fake(): for cls in [IDC, SystemUser, AdminUser, AssetGroup, Asset, Tag]: - if hasattr(cls, 'generake_fake'): - cls.generake_fake() + if hasattr(cls, 'generate_fake'): + cls.generate_fake() if __name__ == '__main__': diff --git a/apps/assets/serializers.py b/apps/assets/serializers.py index bddd91fc4..8ed489a48 100644 --- a/apps/assets/serializers.py +++ b/apps/assets/serializers.py @@ -1,17 +1,19 @@ # -*- coding: utf-8 -*- from django.utils.translation import ugettext_lazy as _ from rest_framework import viewsets, serializers,generics -from .models import AssetGroup, Asset, IDC, AdminUser, SystemUser +from .models import AssetGroup, Asset, IDC, AdminUser, SystemUser, Tag from common.mixins import IDInFilterMixin from rest_framework_bulk import BulkListSerializer, BulkSerializerMixin -class AssetGroupSerializer(serializers.ModelSerializer): +class AssetGroupSerializer(BulkSerializerMixin, serializers.ModelSerializer): assets_amount = serializers.SerializerMethodField() - # assets = serializers.PrimaryKeyRelatedField(many=True, read_only=True) + assets = serializers.PrimaryKeyRelatedField(many=True, queryset=Asset.objects.all()) class Meta: model = AssetGroup + list_serializer_class = BulkListSerializer + fields = ['id', 'name', 'comment', 'assets_amount'] @staticmethod def get_assets_amount(obj): @@ -34,7 +36,47 @@ class AssetUpdateSystemUserSerializer(serializers.ModelSerializer): fields = ['id', 'system_users'] +class AssetGroupUpdateSerializer(serializers.ModelSerializer): + """update the asset group, and add or delete the asset to the group""" + assets = serializers.PrimaryKeyRelatedField(many=True, queryset=Asset.objects.all()) + + class Meta: + model = AssetGroup + fields = ['id', 'assets'] + + +class AssetGroupUpdateSystemUserSerializer(serializers.ModelSerializer): + system_users = serializers.PrimaryKeyRelatedField(many=True, queryset=SystemUser.objects.all()) + + class Meta: + model = AssetGroup + fields = ['id', 'system_users'] + + +class IDCUpdateAssetsSerializer(serializers.ModelSerializer): + assets = serializers.PrimaryKeyRelatedField(many=True, queryset=Asset.objects.all()) + + class Meta: + model = IDC + fields = ['id', 'assets'] + + +class TagSerializer(BulkSerializerMixin, serializers.ModelSerializer): + assets_amount = serializers.SerializerMethodField() + assets = serializers.PrimaryKeyRelatedField(many=True, queryset=Asset.objects.all()) + + class Meta: + model = Tag + list_serializer_class = BulkListSerializer + + @staticmethod + def get_assets_amount(obj): + return obj.assets.count() + + class AdminUserSerializer(serializers.ModelSerializer): + assets = serializers.PrimaryKeyRelatedField(many=True, queryset=Asset.objects.all()) + class Meta: model = AdminUser @@ -55,6 +97,22 @@ class SystemUserSerializer(serializers.ModelSerializer): return fields +class SystemUserUpdateAssetsSerializer(serializers.ModelSerializer): + assets = serializers.PrimaryKeyRelatedField(many=True, queryset=Asset.objects.all()) + + class Meta: + model = SystemUser + fields = ['id', 'assets'] + + +class SystemUserUpdateAssetGroupSerializer(serializers.ModelSerializer): + asset_groups = serializers.PrimaryKeyRelatedField(many=True, queryset=AssetGroup.objects.all()) + + class Meta: + model = SystemUser + fields = ['id', 'asset_groups'] + + class SystemUserSimpleSerializer(serializers.ModelSerializer): class Meta: model = SystemUser @@ -69,6 +127,7 @@ class AssetSerializer(BulkSerializerMixin, serializers.ModelSerializer): class Meta(object): model = Asset list_serializer_class = BulkListSerializer + fields = ['__all__'] @staticmethod def get_hardware(obj): @@ -84,7 +143,7 @@ class AssetSerializer(BulkSerializerMixin, serializers.ModelSerializer): class AssetGrantedSerializer(serializers.ModelSerializer): - system_users = SystemUserSimpleSerializer(many=True, read_only=True) + system_users = SystemUserSerializer(many=True, read_only=True) is_inherited = serializers.SerializerMethodField() system_users_join = serializers.SerializerMethodField() @@ -105,8 +164,9 @@ class AssetGrantedSerializer(serializers.ModelSerializer): return ', '.join([system_user.username for system_user in obj.system_users.all()]) -class IDCSerializer(serializers.ModelSerializer): +class IDCSerializer(BulkSerializerMixin, serializers.ModelSerializer): assets_amount = serializers.SerializerMethodField() + assets = serializers.PrimaryKeyRelatedField(many=True, queryset=Asset.objects.all()) class Meta: model = IDC @@ -119,3 +179,11 @@ class IDCSerializer(serializers.ModelSerializer): fields = super(IDCSerializer, self).get_field_names(declared_fields, info) fields.append('assets_amount') return fields + + +class TagUpdateAssetsSerializer(serializers.ModelSerializer): + assets = serializers.PrimaryKeyRelatedField(many=True, queryset=Asset.objects.all()) + + class Meta: + model = Tag + fields = ['id', 'assets'] \ No newline at end of file diff --git a/apps/assets/templates/assets/_asset_bulk_update_modal.html b/apps/assets/templates/assets/_asset_bulk_update_modal.html index 35b74492f..391fc5361 100644 --- a/apps/assets/templates/assets/_asset_bulk_update_modal.html +++ b/apps/assets/templates/assets/_asset_bulk_update_modal.html @@ -6,30 +6,33 @@ {% block modal_body %} {% load bootstrap %}

{% trans "Hint: only change the field you want to update." %}

- -
-
-

- - 三年质保(0) - -

-
-
+
+
+

+ + 三年质保(0) + +

+
+
- +
- - - + + + + + +
-
- +
+
+ +
+ +
+ +
+
+
@@ -48,28 +63,17 @@
- - - - - -
- - - - - -

- 最多5个标签,单个标签最长8个汉字,按回车确认 -

- -
+ +
+ +

+ 最多5个标签,单个标签最长8个汉字,按回车确认 +

+
diff --git a/apps/assets/templates/assets/_asset_group_bulk_update_modal.html b/apps/assets/templates/assets/_asset_group_bulk_update_modal.html new file mode 100644 index 000000000..80967da34 --- /dev/null +++ b/apps/assets/templates/assets/_asset_group_bulk_update_modal.html @@ -0,0 +1,42 @@ +{% extends '_modal.html' %} +{% load i18n %} +{% block modal_id %}asset_group_bulk_update_modal{% endblock %} +{% block modal_class %}modal-lg{% endblock %} +{% block modal_title%}{% trans "Update Asset Group" %}{% endblock %} +{% block modal_body %} +{% load bootstrap %} +

{% trans "Hint: only change the field you want to update." %}

+ + +
+ +
+ +
+
+
+ +
+ +
+
+ +
+
+
+ +
+
+
+ + +{% endblock %} +{% block modal_confirm_id %}btn_asset_group_bulk_update{% endblock %} \ No newline at end of file diff --git a/apps/assets/templates/assets/admin_user_detail.html b/apps/assets/templates/assets/admin_user_detail.html index 85dba09ef..53948921b 100644 --- a/apps/assets/templates/assets/admin_user_detail.html +++ b/apps/assets/templates/assets/admin_user_detail.html @@ -88,29 +88,30 @@
- +
+ - {% for asset in page_obj %} - - - - - - - {% endfor %} +{# {% for asset in page_obj %}#} +{# #} +{# #} +{# #} +{# #} +{# #} +{# #} +{# {% endfor %}#}
{% trans 'Hostname' %} {% trans 'IP' %} {% trans 'Port' %} {% trans 'Alive' %}{% trans 'Action' %}
{{ asset.hostname }}{{ asset.ip }}{{ asset.port }}Alive
{{ asset.hostname }}{{ asset.ip }}{{ asset.port }}Alive
-
- {% include '_pagination.html' %} -
+{#
#} +{# {% include '_pagination.html' %}#} +{#
#}
@@ -164,15 +165,15 @@ - + @@ -192,15 +193,15 @@ - + @@ -218,26 +219,181 @@ {% endblock %} {% block custom_foot_js %} - + } + swal({ + title: 'Are you sure remove ?', + text: " [" + name + "] ", + type: "warning", + showCancelButton: true, + cancelButtonText: 'Cancel', + confirmButtonColor: "#DD6B55", + confirmButtonText: 'Confirm', + closeOnConfirm: false + }, function () { + doRemove() + }); +} +jumpserver.assets_selected = {}; +jumpserver.asset_groups_selected = {}; +$(document).ready(function () { + $('.select2').select2() + .on("select2:select", function (evt) { + var data = evt.params.data; + jumpserver.assets_selected[data.id] = data.text; + jumpserver.asset_groups_selected[data.id] = data.text; + }) + .on('select2:unselect', function(evt) { + var data = evt.params.data; + delete jumpserver.assets_selected[data.id]; + delete jumpserver.asset_groups_selected[data.id] + }); + var options = { + ele: $('#system_user_assets_table'), + buttons: [], + order: [], + columnDefs: [ + {targets: 0, createdCell: function (td, cellData, rowData) { + var detail_btn = '' + cellData + ''; + $(td).html(detail_btn.replace('99991937', rowData.id)); + }}, + {targets: 3, createdCell: function (td, cellData) { + if (!cellData) { + $(td).html('') + } else { + $(td).html('') + } + }}, + {targets: 4, createdCell: function (td, cellData, rowData) { + var update_btn = '{% trans "Update" %}'.replace('99991937', rowData.id); + var del_btn = '{% trans "Remove" %}'.replace('99991937', rowData.id); + $(td).html(update_btn + del_btn) + }} + + ], + ajax_url: '{% url "api-assets:asset-list" %}?admin_user_id={{ admin_user.id }}', + columns: [{data: "hostname" }, {data: "ip" }, {data: "port" }, + {data: "is_active" }, {data: "id"}], + op_html: $('#actions').html() + }; + jumpserver.initDataTable(options); +}) + +.on('click', '.btn-replace-asset-admin_user', function () { + if (Object.keys(jumpserver.assets_selected).length === 0) { + return false; + } + jumpserver.asset_groups_selected = {}; + var $data_table = $("#system_user_assets_table").DataTable(); + var assets = []; + $.map(jumpserver.assets_selected, function(value, index) { + assets.push(parseInt(index)); + }); + assets.unique(); + var data = []; + var admin_user_id = {{ admin_user.id }}; + var the_url = '{% url "api-assets:asset-list" %}'; + for (var i=0; i a").html(); + var assets = []; + var delete_asset_id = $(this).data('aid'); + $.ajax({ + url: the_url, + method: 'GET', + dataType: 'json', + success: function (result) { + for (var i=0; i {% endblock %} \ No newline at end of file diff --git a/apps/assets/templates/assets/admin_user_list.html b/apps/assets/templates/assets/admin_user_list.html index 35d6b6789..44cd1bf06 100644 --- a/apps/assets/templates/assets/admin_user_list.html +++ b/apps/assets/templates/assets/admin_user_list.html @@ -23,6 +23,18 @@ +
+
+ +
+ +
+
+
{% endblock %} {% block content_bottom_left %}{% endblock %} {% block custom_foot_js %} @@ -48,8 +60,72 @@ $(document).ready(function(){ ajax_url: '{% url "api-assets:admin-user-list" %}', columns: [{data: function(){return ""}}, {data: "name" }, {data: "username" }, {data: "assets_amount" }, {data: function () {return 'lost'} }, {data: "comment" }, {data: "id" }], + op_html: $('#actions').html() }; jumpserver.initDataTable(options); +}) + +.on('click', '.btn_admin_user_delete', function () { + var $this = $(this); + var $data_table = $("#admin_user_list_table").DataTable(); + var name = $(this).closest("tr").find(":nth-child(2)").children('a').html(); + var uid = $this.data('uid'); + var the_url = '{% url "api-assets:admin-user-detail" pk=99991937 %}'.replace('99991937', uid); + objectDelete($this, name, the_url); + $data_table.ajax.reload(); +}) + +.on('click', '#btn_bulk_update', function () { + var action = $('#slct_bulk_update').val(); + var $data_table = $('#admin_user_list_table').DataTable(); + var id_list = []; + var plain_id_list = []; + $data_table.rows({selected: true}).every(function(){ + id_list.push({id: this.data().id}); + plain_id_list.push(this.data().id); + }); + if (plain_id_list.length == 0) { + return false; + } + var the_url = "{% url 'api-assets:admin-user-list' %}"; + function doDelete() { + swal({ + title: "{% trans 'Are you sure?' %}", + text: "{% trans 'This will delete the selected Admin Users !!!' %}", + type: "warning", + showCancelButton: true, + confirmButtonColor: "#DD6B55", + confirmButtonText: "{% trans 'Confirm' %}", + closeOnConfirm: false + }, function() { + var success = function() { + var msg = "{% trans 'Admin Users Deleted.' %}"; + swal("{% trans 'Admin Users Delete' %}", msg, "success"); + $('#admin_user_list_table').DataTable().ajax.reload(); + }; + var fail = function() { + var msg = "{% trans 'Admin Users Deleting failed.' %}"; + swal("{% trans 'Admin Users Delete' %}", msg, "error"); + }; + var url_delete = the_url + '?id__in=' + JSON.stringify(plain_id_list); + APIUpdateAttr({url: url_delete, method: 'DELETE', success: success, error: fail}); + $data_table.ajax.reload(); + jumpserver.checked = false; + }); + } + function doUpdate() { + + } + switch (action) { + case 'delete': + doDelete(); + break; + case 'update': + doUpdate(); + break; + default: + break; + } }); {% endblock %} diff --git a/apps/assets/templates/assets/asset_detail.html b/apps/assets/templates/assets/asset_detail.html index ca1b667ed..18f05e39c 100644 --- a/apps/assets/templates/assets/asset_detail.html +++ b/apps/assets/templates/assets/asset_detail.html @@ -200,7 +200,7 @@ {% trans 'Asset groups' %}
- +
@@ -236,7 +236,7 @@ {% trans 'System users' %}
-
+
@@ -288,7 +288,7 @@ function updateAssetGroups(groups) { $.map(jumpserver.groups_selected, function(group_name, index) { $('#opt_' + index).remove(); // change tr html of user groups. - $('.group_edit tbody').append( + $('#add-asset2group tbody').append( '' + '' + '' + @@ -316,7 +316,7 @@ function updateAssetSystem(system_users) { $.map(jumpserver.groups_selected, function(name, index) { $('#opt_' + index).remove(); - $('.group_edit tbody').append( + $('#add-asset2systemuser tbody').append( '' + '' + '' + @@ -418,7 +418,6 @@ $(document).ready(function () { var system_users = $('.bdg_group').map(function () { return $(this).data('sid'); }).get(); - console.log(system_users); updateAssetSystem(system_users) }) diff --git a/apps/assets/templates/assets/asset_group_detail.html b/apps/assets/templates/assets/asset_group_detail.html index 2785918ff..94e41ad10 100644 --- a/apps/assets/templates/assets/asset_group_detail.html +++ b/apps/assets/templates/assets/asset_group_detail.html @@ -48,10 +48,28 @@ + + +{# {% for asset in assets %}#} +{# #} +{# #} +{# #} +{# #} +{# {% if asset.is_active %}#} +{# #} +{# {% else %}#} +{# #} +{# {% endif %}#} +{# #} +{# #} +{# {% endfor %}#}
' + group_name + '
' + name + '{% trans 'Hostname' %} {% trans 'IP' %} {% trans 'Port' %}{% trans 'Type' %} {% trans 'Alive' %}{% trans 'Action' %}
{{ asset.hostname }}{{ asset.ip }}{{ asset.port }}#} +{# {% trans "Delete" %}#} +{# {% trans "Update" %}#} +{#
@@ -70,14 +88,14 @@ - + @@ -91,29 +109,29 @@ {% trans 'Associate system user' %}
- +
{% for system_user in system_users %} - + {% endfor %} @@ -132,53 +150,249 @@ {% endblock %} {% block custom_foot_js %} - + {% endblock %} \ No newline at end of file diff --git a/apps/assets/templates/assets/asset_group_list.html b/apps/assets/templates/assets/asset_group_list.html index 6e46fc70c..1c11ea383 100644 --- a/apps/assets/templates/assets/asset_group_list.html +++ b/apps/assets/templates/assets/asset_group_list.html @@ -21,6 +21,20 @@
- +
{{ group.name }}{{ system_user.name }} - +
+
+
+ +
+ +
+
+
+{% include 'assets/_asset_group_bulk_update_modal.html' %} {% endblock %} {% block content_bottom_left %}{% endblock %} {% block custom_foot_js %} @@ -43,17 +57,125 @@ $(document).ready(function(){ $(td).html(update_btn + del_btn) }}], ajax_url: '{% url "api-assets:asset-group-list" %}', - columns: [{data: "id"}, {data: "name" }, {data: "assets_amount" }, {data: "comment" }, {data: "id"}] + columns: [{data: "id"}, {data: "name" }, {data: "assets_amount" }, {data: "comment" }, {data: "id"}], + op_html: $('#actions').html() }; jumpserver.initDataTable(options); }) - .on('click', '.btn_asset_group_delete', function () { - var $this = $(this); - var name = $(this).closest("tr").find(":nth-child(2)").children('a').html(); - var uid = $this.data('uid'); - var the_url = '{% url "api-assets:asset-group-detail" pk=99991937 %}'.replace('99991937', uid); - objectDelete($this, name, the_url); - }); + +.on('click', '.btn_asset_group_delete', function () { + var $this = $(this); + var $data_table = $('#asset_groups_list_table').DataTable(); + var name = $(this).closest("tr").find(":nth-child(2)").children('a').html(); + var uid = $this.data('uid'); + var the_url = '{% url "api-assets:asset-group-detail" pk=99991937 %}'.replace('99991937', uid); + objectDelete($this, name, the_url); + $data_table.ajax.reload(); +}) + +.on('click', '#btn_bulk_update', function () { + var action = $('#slct_bulk_update').val(); + var $data_table = $('#asset_groups_list_table').DataTable(); + var id_list = []; + var plain_id_list = []; + $data_table.rows({selected: true}).every(function(){ + id_list.push({id: this.data().id}); + plain_id_list.push(this.data().id); + }); + if (id_list === []) { + return false; + } + var the_url = '{% url "api-assets:asset-group-list" %}'; + console.log(plain_id_list); + console.log(the_url); + function doDelete() { + swal({ + title: "{% trans 'Are you sure?' %}", + text: "{% trans 'This will delete the selected groups !!!' %}", + type: "warning", + showCancelButton: true, + confirmButtonColor: "#DD6B55", + confirmButtonText: "{% trans 'Confirm' %}", + closeOnConfirm: false + }, function() { + var success = function() { + var msg = "{% trans 'Group Deleted.' %}"; + swal("{% trans 'Group Delete' %}", msg, "success"); + $('#asset_groups_list_table').DataTable().ajax.reload(); + }; + var fail = function() { + var msg = "{% trans 'Group Deleting failed.' %}"; + swal("{% trans 'Group Delete' %}", msg, "error"); + }; + var url_delete = the_url + '?id__in=' + JSON.stringify(plain_id_list); + APIUpdateAttr({url: url_delete, method: 'DELETE', success: success, error: fail}); + $data_table.ajax.reload(); + jumpserver.checked = false; + }); + } + function doUpdate() { + $('#asset_group_bulk_update_modal').modal('show'); + } + switch(action) { + case 'delete': + doDelete(); + break; + case 'update': + doUpdate(); + break; + default: + break; + } +}) + +.on('click', '#btn_asset_group_bulk_update', function () { + var json_data = $("#fm_asset_group_bulk_update").serializeObject(); + var body = {}; + body.enable_otp = (json_data.enable_otp === 'on')? true: false; + if (json_data.type != '') { + body.type = json_data.type; + } + + if (json_data.assets != undefined) { + body.assets = json_data.assets; + } + if (typeof body.assets === 'string') { + body.assets = [parseInt(body.assets)] + } else if(typeof body.assets === 'array') { + var new_assets = body.assets.map(Number); + body.assets = new_assets; + } + + if (json_data.system_users != undefined) { + body.system_users = json_data.system_users; + } + if (typeof body.system_users === 'string') { + body.system_users = [parseInt(body.system_users)]; + } else if (typeof body.system_users === 'array') { + var new_system_users = body.system_users.map(Number); + body.system_users = new_system_users; + } + + var post_list = []; + var $data_table = $('#asset_groups_list_table').DataTable() + $data_table.rows({selected: true}).every(function(){ + var content = Object.assign({id: this.data().id}, body); + post_list.push(content); + }); + if (post_list === []) { + return false + } + var the_url = '{% url "api-assets:asset-group-list" %}'; + var success = function() { + var msg = "{% trans 'The selected asset groups has been updated successfully.' %}"; + swal("{% trans 'AssetGroup Updated' %}", msg, "success"); + $('#asset_groups_list_table').DataTable().ajax.reload(); + jumpserver.checked = false; + }; +{# console.log(JSON.stringify(post_list));#} + APIUpdateAttr({url: the_url, method: 'PATCH', body: JSON.stringify(post_list), success: success}); + $('#asset_group_bulk_update_modal').modal('hide'); +}); {% endblock %} diff --git a/apps/assets/templates/assets/asset_list.html b/apps/assets/templates/assets/asset_list.html index a5d43579c..1ee934363 100644 --- a/apps/assets/templates/assets/asset_list.html +++ b/apps/assets/templates/assets/asset_list.html @@ -72,6 +72,7 @@ +
{% include 'assets/_asset_import_modal.html' %} +{% include 'assets/_asset_bulk_update_modal.html' %} {% endblock %} {% block custom_foot_js %} {% endblock %} \ No newline at end of file diff --git a/apps/assets/templates/assets/asset_tag_detail.html b/apps/assets/templates/assets/asset_tag_detail.html index 983039cae..ac190af17 100644 --- a/apps/assets/templates/assets/asset_tag_detail.html +++ b/apps/assets/templates/assets/asset_tag_detail.html @@ -77,80 +77,27 @@
- +
- + + + - {% for asset in page_obj %} - - - - - - - {% endfor %}
{% trans 'Hostname' %} {% trans 'IP' %} {% trans 'Port' %}{% trans 'Alive' %}{% trans 'Type' %}{% trans 'Valid' %}{% trans 'Action' %}
{{ asset.hostname }}{{ asset.ip }}{{ asset.port }}Alive
-
- {% include '_pagination.html' %} -
- {% trans 'Associate system user' %} -
-
- - - - - - - - - - - - - - - {% for group in user.groups.all %} - - - - - {% endfor %} - -
{% trans 'repush system user' %}: - - - -
- -
- -
{{ group.name }} - -
-
-
- -
-
- {% trans 'Add asset to this group' %} + {% trans 'Add asset to this tag' %}
@@ -158,27 +105,19 @@ - {% for group in user.groups.all %} - - - - - {% endfor %}
- + {% for asset in assets_remain %} + {% endfor %}
- +
{{ group.name }} - -
@@ -194,26 +133,147 @@ {% endblock %} {% block custom_foot_js %} - + {% endblock %} \ No newline at end of file diff --git a/apps/assets/templates/assets/asset_tags_list.html b/apps/assets/templates/assets/asset_tags_list.html index cd8cdf559..7c3e20c7c 100644 --- a/apps/assets/templates/assets/asset_tags_list.html +++ b/apps/assets/templates/assets/asset_tags_list.html @@ -1,56 +1,126 @@ {% extends '_base_list.html' %} -{% load i18n %} -{% load common_tags %} -{% block content_left_head %} - {% trans "Create tag" %} +{% load i18n static %} +{#{% load common_tags %}#} +{% block custom_head_css_js %} + + {% endblock %} - -{% block table_head %} - - - - {% trans 'Tag Name' %} - {% trans 'Asset num' %} - -{% endblock %} - -{% block table_body %} - - {% for asset_tag in asset_tags_list %} - - - - - - - {{ asset_tag.name }} - - - {{ asset_tag.asset_set.count }} - - {% trans 'Update' %} - {% trans 'Delete' %} - - - {% endfor %} -{% endblock %} - -{% block content_bottom_left %} - +
@@ -59,13 +63,27 @@
+ +
+
+ +
+ +
+
+
+
- {% trans 'Attach to assets ' %} + {% trans 'Attach assets to IDC ' %}
@@ -75,14 +93,14 @@ @@ -96,33 +114,255 @@ - +{% include 'assets/_asset_bulk_update_modal.html' %} {% endblock %} {% block custom_foot_js %} - + + jumpserver.groups_selected = {}; + }; + APIUpdateAttr({ + url: the_url, + body: JSON.stringify(body), + method: 'PUT', + success: success + }); +} + +function deleteIDCAssets(assets) { + var the_url = "{% url 'api-assets:idc-update-assets' pk=idc.id %}"; + var body = { + assets: Object.assign([], assets) + }; + var $data_table = $("#idc_assets_table").DataTable(); + var success = function(data) { + $data_table.ajax.reload(); + }; + APIUpdateAttr({ + url: the_url, + body: JSON.stringify(body), + method: 'PUT', + success: success + }); +} + +$(document).ready(function () { + $('.select2').select2() + .on("select2:select", function (evt) { + var data = evt.params.data; + jumpserver.assets_selected[data.id] = data.text; + }) + .on('select2:unselect', function(evt) { + var data = evt.params.data; + delete jumpserver.assets_selected[data.id]; + }); + var options = { + ele: $('#idc_assets_table'), + buttons: [], + order: [], + columnDefs: [ + {targets: 1, createdCell: function (td, cellData, rowData) { + var detail_btn = '' + cellData + ''; + $(td).html(detail_btn.replace('99991937', rowData.id)); + }}, + {targets: 5, createdCell: function (td, cellData) { + if (!cellData) { + $(td).html('') + } else { + $(td).html('') + } + }}], + ajax_url: '{% url "api-assets:asset-list" %}?idc_id={{ idc.id }}', + columns: [{data: function(){return ""}}, {data: "hostname" }, {data: "ip" }, {data: "port" }, + {data: "type" }, {data: "is_active" }], + op_html: $('#actions').html() + }; + jumpserver.initDataTable(options); + +}) + +.on('click', '.btn-asset-attach', function () { + if (Object.keys(jumpserver.assets_selected).length === 0) { + return false; + } + var assets=[]; + var $data_table = $("#idc_assets_table").DataTable(); + $.ajax({ + url: '{% url "api-assets:asset-list" %}', + method: 'GET', + data: {"idc_id": {{ idc.id }}}, + dataType: 'json', + success: function (result) { + for(var i in result){ + if (!isNaN(parseInt(result[i]['id']))) { + assets.push(parseInt(result[i]['id'])) + } + } + $.map(jumpserver.assets_selected, function(value, index) { + assets.push(parseInt(index)); + }); + updateIDCAssets(assets); + + } + }); +}) + +.on('click', '#btn_bulk_update', function () { + var action = $("#slct_bulk_update").val(); + var $data_table = $("#idc_assets_table").DataTable(); + var id_list = []; + var plain_id_list = []; + var assets = []; + $data_table.rows({selected: true}).every(function(){ + id_list.push({id: this.data().id}); + plain_id_list.push(this.data().id); + }); + if (id_list === []) { + return false; + } + $.ajax({ + url: '{% url "api-assets:asset-list" %}', + data: {"idc_id": {{ idc.id }}}, + dataType: 'json', + method: 'GET', + success: function (result) { + for (var i in result) { + if (!isNaN(result[i]['id'])) { + assets.push(result[i]['id']); + } + } + for (var j in plain_id_list) { + assets.remove(plain_id_list[j]) + } + function doDelete() { + swal({ + title: "{% trans 'Are you sure?' %}", + text: "{% trans 'This will delete the selected assets !!!' %}", + type: "warning", + showCancelButton: true, + confirmButtonColor: "#DD6B55", + confirmButtonText: "{% trans 'Confirm' %}", + closeOnConfirm: false + }, function() { + var success = function() { + var msg = "{% trans 'Asset Deleted.' %}"; + swal("{% trans 'Asset Delete' %}", msg, "success"); + $('#idc_assets_table').DataTable().ajax.reload(); + }; + var fail = function() { + var msg = "{% trans 'Asset Deleting failed.' %}"; + swal("{% trans 'Asset Delete' %}", msg, "error"); + }; + var url_delete = "{% url 'api-assets:idc-update-assets' pk=idc.id %}"; + var body = { + assets: Object.assign([], assets) + }; + APIUpdateAttr({url: url_delete, body: JSON.stringify(body), method: 'PUT', success: success, error: fail}); + jumpserver.checked = false; + }); + } + function doUpdate() { + $('#asset_bulk_update_modal').modal('show'); + } + switch (action) { + case 'delete': + doDelete(); + break; + case 'update': + doUpdate(); + break; + default: + break; + } + + } + }); +}) + +.on('click', '#btn_asset_bulk_update', function () { + var json_data = $("#fm_asset_bulk_update").serializeObject(); + var body = {}; + body.enable_otp = (json_data.enable_otp === 'on')? true: false; + if (json_data.type != '') { + body.type = json_data.type; + } + + if (json_data.groups != undefined) { + body.groups = json_data.groups; + } + if (typeof body.groups === 'string') { + body.groups = [parseInt(body.groups)] + } else if(typeof body.groups === 'array') { + var new_groups = body.groups.map(Number); + body.groups = new_groups; + } + + if (json_data.users != undefined) { + body.users = json_data.users; + } + if (typeof body.users === 'string') { + body.users = [parseInt(body.users)] + } else if(typeof body.users === 'array') { + var new_users = body.users.map(Number); + body.users = new_users; + } + + if (json_data.tags != undefined) { + body.tags = json_data.tags; + } + if (typeof body.tags == 'string') { + body.tags = [parseInt(body.tags)]; + } else if (typeof body.tags === 'array') { + var new_tags = body.tags.map(Number); + body.tags = new_tags; + } + + var $data_table = $('#asset_list_table').DataTable(); + var post_list = []; + $data_table.rows({selected: true}).every(function(){ + var content = Object.assign({id: this.data().id}, body); + post_list.push(content); + }); + if (post_list === []) { + return false + } + var the_url = "{% url 'api-assets:asset-list' %}"; + var success = function() { + var msg = "{% trans 'The selected assets has been updated successfully.' %}"; + swal("{% trans 'Asset Updated' %}", msg, "success"); + $('#asset_list_table').DataTable().ajax.reload(); + jumpserver.checked = false; + }; + APIUpdateAttr({url: the_url, method: 'PATCH', body: JSON.stringify(post_list), success: success}); + $('#asset_bulk_update_modal').modal('hide'); +}); + + + + + + + {% endblock %} \ No newline at end of file diff --git a/apps/assets/templates/assets/idc_detail.html b/apps/assets/templates/assets/idc_detail.html index dc3143213..9073e6f1a 100644 --- a/apps/assets/templates/assets/idc_detail.html +++ b/apps/assets/templates/assets/idc_detail.html @@ -27,7 +27,7 @@ Update
  • - + Delete
  • @@ -53,9 +53,9 @@
    -
    - +
    +
    - + @@ -113,26 +113,47 @@ {% endblock %} {% block custom_foot_js %} - + } + swal({ + title: 'Are you sure delete ?', + text: " [" + name + "] ", + type: "warning", + showCancelButton: true, + cancelButtonText: 'Cancel', + confirmButtonColor: "#DD6B55", + confirmButtonText: 'Confirm', + closeOnConfirm: false + }, function () { + doDelete() + }); +} + +$(document).ready(function () { + $('.select2').select2(); +}) +.on('click', '.btn-delete-idc', function () { + var name = $('.idc-details > tbody > tr').attr("data-name"); + var id = {{ idc.id }}; + var the_url = '{% url "api-assets:idc-detail" pk=99991937 %}'.replace(99991937, id); + idcDelete(name, the_url); +}); + {% endblock %} \ No newline at end of file diff --git a/apps/assets/templates/assets/idc_list.html b/apps/assets/templates/assets/idc_list.html index f9ee96bb7..8663e5009 100644 --- a/apps/assets/templates/assets/idc_list.html +++ b/apps/assets/templates/assets/idc_list.html @@ -1,5 +1,9 @@ {% extends '_base_list.html' %} {% load i18n static %} +{% block custom_head_css_js %} + + +{% endblock %} {% block table_search %}{% endblock %} {% block table_container %}
    @@ -22,6 +26,18 @@
    {% trans 'Name' %}: {{ idc.name }}
    +
    +
    + +
    + +
    +
    +
    {% endblock %} {% block content_bottom_left %}{% endblock %} {% block custom_foot_js %} @@ -34,20 +50,10 @@ $(document).ready(function(){ var detail_btn = '' + cellData + ''; $(td).html(detail_btn.replace('99991937', rowData.id)); }}, -{# {targets: 4, createdCell: function (td, cellData) {#} -{# var innerHtml = cellData.length > 8 ? cellData.substring(0, 8) + '...': cellData;#} -{# $(td).html('' + innerHtml + '');#} -{# }},#} -{# {targets: 6, createdCell: function (td, cellData) {#} -{# if (!cellData) {#} -{# $(td).html('')#} -{# } else {#} -{# $(td).html('')#} -{# }#} -{# }},#} + {targets: 6, createdCell: function (td, cellData, rowData) { var update_btn = '{% trans "Update" %}'.replace('99991937', cellData); - var del_btn = '{% trans "Delete" %}'.replace('99991937', cellData); + var del_btn = '{% trans "Delete" %}'.replace('99991937', cellData); $(td).html(update_btn + del_btn) }}], ajax_url: '{% url "api-assets:idc-list" %}', @@ -56,6 +62,64 @@ $(document).ready(function(){ op_html: $('#actions').html() }; jumpserver.initDataTable(options); +}) + +.on('click', '.btn_idc_delete', function () { + var $this = $(this); + var $data_table = $('#idc_list_table').DataTable(); + var name = $(this).closest("tr").find(":nth-child(2)").children('a').html(); + var uid = $this.data('uid'); + var the_url = '{% url "api-assets:idc-detail" pk=99991937 %}'.replace('99991937', uid); + objectDelete($this, name, the_url); + $data_table.ajax.reload(); +{# TODO: reload the tale #} +}) + +.on('click', '#btn_bulk_update', function () { + var action = $('#slct_bulk_update').val(); + var $data_table = $('#idc_list_table').DataTable(); + var id_list = []; + var plain_id_list = []; + $data_table.rows({selected: true}).every(function(){ + id_list.push({id: this.data().id}); + plain_id_list.push(this.data().id); + }); + if (id_list === []) { + return false; + } + var the_url = "{% url 'api-assets:idc-list' %}"; + function doDelete() { + swal({ + title: "{% trans 'Are you sure?' %}", + text: "{% trans 'This will delete the selected idc !!!' %}", + type: "warning", + showCancelButton: true, + confirmButtonColor: "#DD6B55", + confirmButtonText: "{% trans 'Confirm' %}", + closeOnConfirm: false + }, function() { + var success = function() { + var msg = "{% trans 'IDC Deleted.' %}"; + swal("{% trans 'IDC Delete' %}", msg, "success"); + $('#idc_list_table').DataTable().ajax.reload(); + }; + var fail = function() { + var msg = "{% trans 'IDC Deleting failed.' %}"; + swal("{% trans 'IDC Delete' %}", msg, "error"); + }; + var url_delete = the_url + '?id__in=' + JSON.stringify(plain_id_list); + APIUpdateAttr({url: url_delete, method: 'DELETE', success: success, error: fail}); + $data_table.ajax.reload(); + jumpserver.checked = false; + }); + } + switch (action) { + case 'delete': + doDelete(); + break; + default: + break; + } }); {% endblock %} diff --git a/apps/assets/templates/assets/system_user_asset.html b/apps/assets/templates/assets/system_user_asset.html index c3f22749b..522c58144 100644 --- a/apps/assets/templates/assets/system_user_asset.html +++ b/apps/assets/templates/assets/system_user_asset.html @@ -43,35 +43,35 @@
    - +
    - + - {% for asset in page_obj %} - - - - - - - - {% endfor %} +{# {% for asset in page_obj %}#} +{# #} +{# #} +{# #} +{# #} +{# #} +{# #} +{# #} +{# {% endfor %}#}
    {% trans 'Hostname' %} {% trans 'IP' %} {% trans 'Port' %} {% trans 'Reachable' %}{% trans 'Action' %}
    {{ asset.hostname }}{{ asset.ip }}{{ asset.port }} - - - -
    {{ asset.hostname }}{{ asset.ip }}{{ asset.port }}#} +{# #} +{# #} +{# #} +{#
    -
    - {% include '_pagination.html' %} -
    +{#
    #} +{# {% include '_pagination.html' %}#} +{#
    #}
    @@ -95,7 +95,7 @@ - + @@ -123,16 +123,16 @@ - + {% for asset_group in asset_groups %} - {{ asset_group.name }} + {{ asset_group.name }} - + {% endfor %} @@ -150,26 +150,224 @@ {% endblock %} {% block custom_foot_js %} - + } + swal({ + title: 'Are you sure delete ?', + text: " [" + name + "] ", + type: "warning", + showCancelButton: true, + cancelButtonText: 'Cancel', + confirmButtonColor: "#DD6B55", + confirmButtonText: 'Confirm', + closeOnConfirm: false + }, function () { + doDelete() + }); +} +function updateSystemUserAssetGroup(asset_groups) { + var the_url = "{% url 'api-assets:systemuser-update-assetgroups' pk=system_user.id %}"; + var body = { + asset_groups: Object.assign([], asset_groups) + }; + var success = function(data) { + $('.select2-selection__rendered').empty(); + $('#groups_selected').val(''); + $.map(jumpserver.asset_groups_selected, function(asset_groups, index) { + $('#opt_' + index).remove(); + $('.system-user-table tbody').append( + '' + + '' + asset_groups + '' + + '' + + '' + ) + }); + jumpserver.assets_selected = {}; + }; + APIUpdateAttr({ + url: the_url, + body: JSON.stringify(body), + success: success + }); +} +$(document).ready(function () { + $('.select2').select2() + .on("select2:select", function (evt) { + var data = evt.params.data; + jumpserver.assets_selected[data.id] = data.text; + jumpserver.asset_groups_selected[data.id] = data.text; + }) + .on('select2:unselect', function(evt) { + var data = evt.params.data; + delete jumpserver.assets_selected[data.id]; + delete jumpserver.asset_groups_selected[data.id]; + }); + var options = { + ele: $('#system_user_list'), + buttons: [], + order: [], + columnDefs: [ + {targets: 0, createdCell: function (td, cellData, rowData) { + var detail_btn = '' + cellData + ''; + $(td).html(detail_btn.replace('99991937', rowData.id)); + }}, + {targets: 3, createdCell: function (td, cellData) { + if (!cellData) { + $(td).html('') + } else { + $(td).html('') + } + }}, + {targets: 4, createdCell: function (td, cellData, rowData) { + var update_btn = '{% trans "Update" %}'.replace('99991937', rowData.id); + var del_btn = '{% trans "Delete" %}'.replace('99991937', rowData.id); + $(td).html(update_btn + del_btn) + }} + ], + ajax_url: '{% url "api-assets:asset-list" %}?system_user_id={{ system_user.id }}', + columns: [{data: "hostname" }, {data: "ip" }, {data: "port" }, {data: function () { return ""; } }, {data: "id"}], + op_html: $('#actions').html() + }; + jumpserver.initDataTable(options); +}) + +.on('click', '.btn-add-asset2system-user', function () { + if (Object.keys(jumpserver.assets_selected).length === 0) { + return false; + } + var $data_table = $("#system_user_list").DataTable(); + var assets = []; + $.ajax({ + url: '{% url "api-assets:asset-list" %}?system_user_id={{ system_user.id }}', + method: 'GET', + dataType: 'json', + success: function (result) { + for(var i in result){ + if (!isNaN(parseInt(result[i]['id']))) { + assets.push(parseInt(result[i]['id'])) + } + } + $.map(jumpserver.assets_selected, function(value, index) { + assets.push(parseInt(index)); + }); + assets.unique(); + var the_url = "{% url 'api-assets:systemuser-update-assets' pk=system_user.id %}"; + var body = {"assets": assets}; + APIUpdateAttr({ + url: the_url, + body: JSON.stringify(body), + method: 'PATCH' + }); + $data_table.ajax.reload(); + } + }); +}) + +.on('click', '.btn_asset_delete', function () { + var $this = $(this); + var the_url = "{% url 'api-assets:systemuser-update-assets' pk=system_user.id %}"; + var name = $(this).closest("tr").find(":nth-child(1) > a").html(); + var $data_table = $("#system_user_list").DataTable(); + var assets = []; + $('#system_user_list > tbody > tr').map(function () { + assets.push(parseInt($(this).closest("tr").find(":nth-child(1) > a").attr("data-aid"))) + }); + var delete_asset_id = $(this).data('aid'); + assets.remove(delete_asset_id); + assets.unique(); + var data = {"assets": assets}; + objectDelete($this, name, the_url, data); + $data_table.ajax.reload(); +}) + +.on('click', '#btn_add_user_group', function () { + jumpserver.assets_selected = {}; + if (Object.keys(jumpserver.asset_groups_selected).length === 0) { + return false; + } + asset_groups = []; + $.ajax({ + url: '{% url "api-assets:systemuser-update-assetgroups" pk=system_user.id %}', + method: 'GET', + dataType: 'json', + success: function (result) { + for (var i in result['asset_groups']) { + if (!isNaN(result['asset_groups'][i])) { + asset_groups.push(parseInt(result['asset_groups'][i])); + } + } + $.map(jumpserver.asset_groups_selected, function(value, index) { + asset_groups.push(parseInt(index)); + }); + asset_groups.unique(); + console.log(asset_groups); + var the_url = '{% url "api-assets:systemuser-update-assetgroups" pk=system_user.id %}'; + var body = {"asset_groups": asset_groups}; + APIUpdateAttr({ + url: the_url, + body: JSON.stringify(body), + method: 'PATCH' + }); +{# TODO: reload the table #} +{# window.location.href="{% url 'assets:system-user-asset' pk=system_user.id %}"#} + } + }); +}) + +.on('click', '.btn-leave-system_user', function () { + var $this = $(this); + var $tr = $this.closest('tr'); + var $badge = $tr.find('.bdg_asset_groups'); + var sid = $badge.data('gid'); + var name = $badge.html() || $badge.text(); + $('system-user-table').append( + '' + ); + $tr.remove(); + var asset_groups = $('.bdg_asset_groups').map(function () { + return $(this).data('gid'); + }).get(); + updateSystemUserAssetGroup(asset_groups); +}); + + + + + {% endblock %} \ No newline at end of file diff --git a/apps/assets/templates/assets/system_user_list.html b/apps/assets/templates/assets/system_user_list.html index 77526ff37..ba264541c 100644 --- a/apps/assets/templates/assets/system_user_list.html +++ b/apps/assets/templates/assets/system_user_list.html @@ -26,33 +26,110 @@ +
    +
    + +
    + +
    +
    +
    {% endblock %} {% block custom_foot_js %} {% endblock %} diff --git a/apps/assets/urls/api_urls.py b/apps/assets/urls/api_urls.py index 18234ba8a..42839bdfa 100644 --- a/apps/assets/urls/api_urls.py +++ b/apps/assets/urls/api_urls.py @@ -2,16 +2,18 @@ from django.conf.urls import url from .. import api from rest_framework import routers +from rest_framework_bulk.routes import BulkRouter app_name = 'assets' -router = routers.DefaultRouter() +router = BulkRouter() router.register(r'v1/asset-groups', api.AssetGroupViewSet, 'asset-group') router.register(r'v1/assets', api.AssetViewSet, 'asset') router.register(r'v1/idc', api.IDCViewSet, 'idc') router.register(r'v1/admin-user', api.AdminUserViewSet, 'admin-user') router.register(r'v1/system-user', api.SystemUserViewSet, 'system-user') +router.register(r'v1/tags', api.TagViewSet, 'asset-tag') urlpatterns = [ url(r'^v1/assets_bulk/$', api.AssetListUpdateApi.as_view(), name='asset-bulk-update'), @@ -20,8 +22,31 @@ urlpatterns = [ name='system-user-auth-info'), url(r'^v1/assets/(?P\d+)/groups/$', api.AssetUpdateGroupApi.as_view(), name='asset-update-group'), + url(r'^v1/assets/(?P\d+)/system-users/$', api.SystemUserUpdateApi.as_view(), name='asset-update-system-users'), + + # update the system users, which add and delete the asset to the system user + url(r'^v1/system_user/(?P\d+)/assets/$', + api.SystemUserUpdateAssetsApi.as_view(), name='systemuser-update-assets'), + + url(r'^v1/system_user/(?P\d+)/groups/$', + api.SystemUserUpdateAssetGroupApi.as_view(), name='systemuser-update-assetgroups'), + + # update the asset group, which add or delete the asset to the group + url(r'^v1/groups/(?P\d+)/assets/$', + api.AssetGroupUpdateApi.as_view(), name='asset-groups-update'), + + # update the asset group, and add or delete the system_user to the group + url(r'^v1/groups/(?P\d+)/system-users/$', + api.AssetGroupUpdateSystemUserApi.as_view(), name='asset-groups-update-systemusers'), + + # update the IDC, and add or delete the assets to the IDC + url(r'^v1/idc/(?P\d+)/assets/$', + api.IDCupdateAssetsApi.as_view(), name='idc-update-assets'), + + url(r'v1/tag/(?P\d+)/assets/$', + api.TagUpdateAssetsApi.as_view(), name='tag-update-assets'), ] urlpatterns += router.urls diff --git a/apps/assets/views.py b/apps/assets/views.py index 1942d05d5..de841d106 100644 --- a/apps/assets/views.py +++ b/apps/assets/views.py @@ -16,7 +16,7 @@ from django.urls import reverse_lazy from django.contrib.messages.views import SuccessMessageMixin from django.views.generic.detail import DetailView, SingleObjectMixin from django.shortcuts import get_object_or_404, reverse, redirect -from django.http import HttpResponse, JsonResponse +from django.http import HttpResponse, JsonResponse, HttpResponseRedirect from django.views.decorators.csrf import csrf_protect, csrf_exempt from django.utils.decorators import method_decorator from django.core.cache import cache @@ -37,8 +37,10 @@ class AssetListView(AdminUserRequiredMixin, TemplateView): context = { 'app': 'Assets', 'action': 'asset list', - 'tag_list': [(i.id, i.name, i.asset_set.all().count())for i in Tag.objects.all().order_by('name')] - + 'groups': AssetGroup.objects.all(), + 'system_users': SystemUser.objects.all(), + 'tag_list': [(i.id, i.name, i.assets.all().count())for i in Tag.objects.all().order_by('name')], + 'tags': Tag.objects.all().order_by('name') } kwargs.update(context) return super(AssetListView, self).get_context_data(**kwargs) @@ -261,6 +263,8 @@ class AssetGroupListView(AdminUserRequiredMixin, TemplateView): context = { 'app': _('Assets'), 'action': _('Asset group list'), + 'assets': Asset.objects.all(), + 'system_users': SystemUser.objects.all(), 'keyword': self.request.GET.get('keyword', '') } kwargs.update(context) @@ -280,6 +284,7 @@ class AssetGroupDetailView(AdminUserRequiredMixin, DetailView): 'app': _('Assets'), 'action': _('Asset group detail'), 'assets_remain': assets_remain, + 'assets': [asset for asset in Asset.objects.all() if asset not in assets_remain], 'system_users': system_users, 'system_users_remain': system_users_remain, } @@ -383,6 +388,21 @@ class IDCAssetsView(AdminUserRequiredMixin, DetailView): template_name = 'assets/idc_assets.html' context_object_name = 'idc' + def get_context_data(self, **kwargs): + assets_remain = Asset.objects.exclude(id__in=self.object.assets.all()) + + context = { + 'app': _('Assets'), + 'action': _('Asset detail'), + 'groups': AssetGroup.objects.all(), + 'system_users': SystemUser.objects.all(), + 'tags': Tag.objects.all(), + 'assets_remain': assets_remain, + 'assets': [asset for asset in Asset.objects.all() if asset not in assets_remain], + } + kwargs.update(context) + return super(IDCAssetsView, self).get_context_data(**kwargs) + class IDCDeleteView(AdminUserRequiredMixin, DeleteView): model = IDC @@ -477,10 +497,19 @@ class AdminUserDetailView(AdminUserRequiredMixin, SingleObjectMixin, ListView): def get_queryset(self): return self.object.assets.all() + # def get_asset_groups(self): + # return self.object.asset_groups.all() + def get_context_data(self, **kwargs): + asset_groups = AssetGroup.objects.all() + assets = self.get_queryset() context = { 'app': 'assets', - 'action': 'Admin user detail' + 'action': 'Admin user detail', + 'assets_remain': [asset for asset in Asset.objects.all() if asset not in assets], + 'asset_groups': asset_groups, + # 'asset_groups_remain': [asset_group for asset_group in AssetGroup.objects.all() + # if asset_group not in asset_groups] } kwargs.update(context) return super(AdminUserDetailView, self).get_context_data(**kwargs) @@ -630,7 +659,7 @@ class TagsListView(AdminUserRequiredMixin, ListView): return super(TagsListView, self).get_context_data(**kwargs) -class AssetTagCreateView(AdminUserRequiredMixin, CreateView): +class AssetTagCreateView(AdminUserRequiredMixin, CreateAssetTagsMiXin, CreateView): model = Tag form_class = forms.AssetTagForm template_name = 'assets/asset_tag_create.html' @@ -653,7 +682,7 @@ class AssetTagCreateView(AdminUserRequiredMixin, CreateView): assets_id_list = self.request.POST.getlist('assets', []) assets = [get_object_or_404(Asset, id=int(asset_id)) for asset_id in assets_id_list] asset_tag.created_by = self.request.user.username or 'Admin' - asset_tag.asset_set.add(*tuple(assets)) + asset_tag.assets.add(*tuple(assets)) asset_tag.save() return super(AssetTagCreateView, self).form_valid(form) @@ -667,13 +696,16 @@ class AssetTagDetailView(SingleObjectMixin, AdminUserRequiredMixin, ListView): return super(AssetTagDetailView, self).get(request, *args, **kwargs) def get_queryset(self): - return self.object.asset_set.all() + return self.object.assets.all() def get_context_data(self, **kwargs): + assets_remain = Asset.objects.exclude(id__in=self.object.assets.all()) context = { 'app': _('Tag'), 'action': _('Asset Tags detail'), 'asset_tag': self.object, + 'assets_remain': assets_remain, + 'assets': [asset for asset in Asset.objects.all() if asset not in assets_remain] } kwargs.update(context) return super(AssetTagDetailView, self).get_context_data(**kwargs) @@ -690,7 +722,7 @@ class AssetTagUpdateView(AdminUserRequiredMixin, UpdateView): return super(AssetTagUpdateView, self).get(request, *args, **kwargs) def get_context_data(self, **kwargs): - assets_all = self.object.asset_set.all() + assets_all = self.object.assets.all() context = { 'app': _('Tag'), 'action': _('Asset Tags detail'), @@ -710,6 +742,7 @@ class AssetTagDeleteView(AdminUserRequiredMixin, DeleteView): @method_decorator(csrf_exempt, name='dispatch') class AssetExportView(View): + @staticmethod def get_asset_attr(asset, attr): if attr in ['admin_user', 'idc']: diff --git a/apps/fixtures/fake.json b/apps/fixtures/fake.json index 4548820da..3aee19eae 100644 --- a/apps/fixtures/fake.json +++ b/apps/fixtures/fake.json @@ -1 +1 @@ -[{"model": "users.usergroup", "pk": 1, "fields": {"is_discard": false, "discard_time": null, "name": "Default", "comment": "Default user group for all user", "date_created": "2016-11-25T06:50:28.410Z", "created_by": "System"}}, {"model": "users.usergroup", "pk": 2, "fields": {"is_discard": false, "discard_time": null, "name": "Teresa Torres", "comment": "Curabitur in libero ut massa volutpat convallis.", "date_created": "2016-11-27T08:11:26.798Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 3, "fields": {"is_discard": false, "discard_time": null, "name": "Jose Bradley", "comment": "Donec ut dolor.", "date_created": "2016-11-27T08:11:26.803Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 4, "fields": {"is_discard": false, "discard_time": null, "name": "Barbara Holmes", "comment": "Sed ante.", "date_created": "2016-11-27T08:11:26.806Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 5, "fields": {"is_discard": false, "discard_time": null, "name": "Tina Lane", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "date_created": "2016-11-27T08:11:26.808Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 6, "fields": {"is_discard": false, "discard_time": null, "name": "Janet Baker", "comment": "Morbi a ipsum.", "date_created": "2016-11-27T08:11:26.811Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 7, "fields": {"is_discard": false, "discard_time": null, "name": "Gloria West", "comment": "Vivamus in felis eu sapien cursus vestibulum.", "date_created": "2016-11-27T08:11:26.815Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 8, "fields": {"is_discard": false, "discard_time": null, "name": "Barbara Carroll", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2016-11-27T08:11:26.817Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 9, "fields": {"is_discard": false, "discard_time": null, "name": "Betty Webb", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "date_created": "2016-11-27T08:11:26.820Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 10, "fields": {"is_discard": false, "discard_time": null, "name": "Jerry Miller", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla.", "date_created": "2016-11-27T08:11:26.822Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 11, "fields": {"is_discard": false, "discard_time": null, "name": "Carol Lawrence", "comment": "In congue.", "date_created": "2016-11-27T08:11:26.824Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 12, "fields": {"is_discard": false, "discard_time": null, "name": "Julie Young", "comment": "Phasellus id sapien in sapien iaculis congue.", "date_created": "2016-11-27T08:11:26.827Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 13, "fields": {"is_discard": false, "discard_time": null, "name": "Harry Walker", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2016-11-27T08:11:26.830Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 14, "fields": {"is_discard": false, "discard_time": null, "name": "Lois Nichols", "comment": "Nunc nisl.", "date_created": "2016-11-27T08:11:26.833Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 15, "fields": {"is_discard": false, "discard_time": null, "name": "Tammy Hill", "comment": "Nulla ut erat id mauris vulputate elementum.", "date_created": "2016-11-27T08:11:26.837Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 16, "fields": {"is_discard": false, "discard_time": null, "name": "Amy Hughes", "comment": "Donec quis orci eget orci vehicula condimentum.", "date_created": "2016-11-27T08:11:26.841Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 17, "fields": {"is_discard": false, "discard_time": null, "name": "Sara Welch", "comment": "Donec dapibus.", "date_created": "2016-11-27T08:11:26.845Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 18, "fields": {"is_discard": false, "discard_time": null, "name": "Catherine Webb", "comment": "Donec quis orci eget orci vehicula condimentum.", "date_created": "2016-11-27T08:11:26.850Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 19, "fields": {"is_discard": false, "discard_time": null, "name": "Tammy Morgan", "comment": "Suspendisse ornare consequat lectus.", "date_created": "2016-11-27T08:11:26.853Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 20, "fields": {"is_discard": false, "discard_time": null, "name": "Shirley Martin", "comment": "Mauris lacinia sapien quis libero.", "date_created": "2016-11-27T08:11:26.856Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 21, "fields": {"is_discard": false, "discard_time": null, "name": "Helen Hamilton", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla.", "date_created": "2016-11-27T08:11:26.860Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 22, "fields": {"is_discard": false, "discard_time": null, "name": "Anne Fowler", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "date_created": "2016-11-27T08:11:26.865Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 23, "fields": {"is_discard": false, "discard_time": null, "name": "Louise Tucker", "comment": "Sed vel enim sit amet nunc viverra dapibus.", "date_created": "2016-11-27T08:11:26.868Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 24, "fields": {"is_discard": false, "discard_time": null, "name": "Kathleen Davis", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "date_created": "2016-11-27T08:11:26.872Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 25, "fields": {"is_discard": false, "discard_time": null, "name": "Elizabeth Simmons", "comment": "Etiam justo.", "date_created": "2016-11-27T08:11:26.882Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 26, "fields": {"is_discard": false, "discard_time": null, "name": "Nicole Thompson", "comment": "Nulla mollis molestie lorem.", "date_created": "2016-11-27T08:11:26.886Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 27, "fields": {"is_discard": false, "discard_time": null, "name": "Virginia Porter", "comment": "Phasellus in felis.", "date_created": "2016-11-27T08:11:26.889Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 28, "fields": {"is_discard": false, "discard_time": null, "name": "Irene Rodriguez", "comment": "Cras in purus eu magna vulputate luctus.", "date_created": "2016-11-27T08:11:26.893Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 29, "fields": {"is_discard": false, "discard_time": null, "name": "Mildred George", "comment": "Suspendisse ornare consequat lectus.", "date_created": "2016-11-27T08:11:26.897Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 30, "fields": {"is_discard": false, "discard_time": null, "name": "Beverly Gordon", "comment": "Nullam porttitor lacus at turpis.", "date_created": "2016-11-27T08:11:26.901Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 31, "fields": {"is_discard": false, "discard_time": null, "name": "Melissa Hunt", "comment": "Curabitur at ipsum ac tellus semper interdum.", "date_created": "2016-11-27T08:11:26.904Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 32, "fields": {"is_discard": false, "discard_time": null, "name": "Carol Barnes", "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-27T08:11:26.907Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 33, "fields": {"is_discard": false, "discard_time": null, "name": "Beverly Moreno", "comment": "Praesent lectus.", "date_created": "2016-11-27T08:11:26.912Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 34, "fields": {"is_discard": false, "discard_time": null, "name": "Theresa Berry", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo.", "date_created": "2016-11-27T08:11:26.916Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 35, "fields": {"is_discard": false, "discard_time": null, "name": "Denise Hill", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "date_created": "2016-11-27T08:11:26.919Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 36, "fields": {"is_discard": false, "discard_time": null, "name": "Kelly Woods", "comment": "Vivamus tortor.", "date_created": "2016-11-27T08:11:26.922Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 37, "fields": {"is_discard": false, "discard_time": null, "name": "Tammy Matthews", "comment": "Maecenas ut massa quis augue luctus tincidunt.", "date_created": "2016-11-27T08:11:26.925Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 38, "fields": {"is_discard": false, "discard_time": null, "name": "Lisa Williamson", "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-27T08:11:26.929Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 39, "fields": {"is_discard": false, "discard_time": null, "name": "Christina Gonzalez", "comment": "Donec ut mauris eget massa tempor convallis.", "date_created": "2016-11-27T08:11:26.934Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 40, "fields": {"is_discard": false, "discard_time": null, "name": "Laura Roberts", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla.", "date_created": "2016-11-27T08:11:26.938Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 41, "fields": {"is_discard": false, "discard_time": null, "name": "Elizabeth Burns", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi.", "date_created": "2016-11-27T08:11:26.941Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 42, "fields": {"is_discard": false, "discard_time": null, "name": "Maria Hernandez", "comment": "Duis bibendum.", "date_created": "2016-11-27T08:11:26.947Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 43, "fields": {"is_discard": false, "discard_time": null, "name": "Ruth Boyd", "comment": "Pellentesque ultrices mattis odio.", "date_created": "2016-11-27T08:11:26.951Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 44, "fields": {"is_discard": false, "discard_time": null, "name": "Doris Greene", "comment": "Nulla tellus.", "date_created": "2016-11-27T08:11:26.954Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 45, "fields": {"is_discard": false, "discard_time": null, "name": "Brenda Burns", "comment": "Aenean fermentum.", "date_created": "2016-11-27T08:11:26.956Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 46, "fields": {"is_discard": false, "discard_time": null, "name": "Mary Peterson", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi.", "date_created": "2016-11-27T08:11:26.958Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 47, "fields": {"is_discard": false, "discard_time": null, "name": "Janet Bennett", "comment": "Donec dapibus.", "date_created": "2016-11-27T08:11:26.961Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 48, "fields": {"is_discard": false, "discard_time": null, "name": "Christine Edwards", "comment": "Nulla nisl.", "date_created": "2016-11-27T08:11:26.965Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 49, "fields": {"is_discard": false, "discard_time": null, "name": "Alice Fisher", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "date_created": "2016-11-27T08:11:26.967Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 50, "fields": {"is_discard": false, "discard_time": null, "name": "Ashley Holmes", "comment": "Etiam vel augue.", "date_created": "2016-11-27T08:11:26.972Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 51, "fields": {"is_discard": false, "discard_time": null, "name": "Diane Chavez", "comment": "Cras pellentesque volutpat dui.", "date_created": "2016-11-27T08:11:26.975Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 52, "fields": {"is_discard": false, "discard_time": null, "name": "Lois Dunn", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo.", "date_created": "2016-11-27T08:11:26.978Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 53, "fields": {"is_discard": false, "discard_time": null, "name": "Gloria Grant", "comment": "In blandit ultrices enim.", "date_created": "2016-11-27T08:11:26.982Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 54, "fields": {"is_discard": false, "discard_time": null, "name": "Dorothy Watson", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "date_created": "2016-11-27T08:11:26.985Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 55, "fields": {"is_discard": false, "discard_time": null, "name": "Mary Ruiz", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "date_created": "2016-11-27T08:11:26.988Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 56, "fields": {"is_discard": false, "discard_time": null, "name": "Nancy Snyder", "comment": "Nam nulla.", "date_created": "2016-11-27T08:11:26.992Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 57, "fields": {"is_discard": false, "discard_time": null, "name": "Ruby Russell", "comment": "Maecenas ut massa quis augue luctus tincidunt.", "date_created": "2016-11-27T08:11:26.995Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 58, "fields": {"is_discard": false, "discard_time": null, "name": "Carolyn Carroll", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "date_created": "2016-11-27T08:11:26.998Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 59, "fields": {"is_discard": false, "discard_time": null, "name": "Amy Gray", "comment": "Ut tellus.", "date_created": "2016-11-27T08:11:27.001Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 60, "fields": {"is_discard": false, "discard_time": null, "name": "Kimberly Jenkins", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "date_created": "2016-11-27T08:11:27.004Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 61, "fields": {"is_discard": false, "discard_time": null, "name": "Frances Stewart", "comment": "Pellentesque at nulla.", "date_created": "2016-11-27T08:11:27.006Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 62, "fields": {"is_discard": false, "discard_time": null, "name": "Amanda Howard", "comment": "Proin interdum mauris non ligula pellentesque ultrices.", "date_created": "2016-11-27T08:11:27.009Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 63, "fields": {"is_discard": false, "discard_time": null, "name": "Margaret Morris", "comment": "Donec ut mauris eget massa tempor convallis.", "date_created": "2016-11-27T08:11:27.012Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 64, "fields": {"is_discard": false, "discard_time": null, "name": "Julie Mills", "comment": "Cras in purus eu magna vulputate luctus.", "date_created": "2016-11-27T08:11:27.014Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 65, "fields": {"is_discard": false, "discard_time": null, "name": "Sandra Bryant", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "date_created": "2016-11-27T08:11:27.016Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 66, "fields": {"is_discard": false, "discard_time": null, "name": "Gloria Myers", "comment": "Maecenas tincidunt lacus at velit.", "date_created": "2016-11-27T08:11:27.019Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 67, "fields": {"is_discard": false, "discard_time": null, "name": "Amy Moore", "comment": "Nunc purus.", "date_created": "2016-11-27T08:11:27.022Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 68, "fields": {"is_discard": false, "discard_time": null, "name": "Ann Cunningham", "comment": "Quisque ut erat.", "date_created": "2016-11-27T08:11:27.024Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 69, "fields": {"is_discard": false, "discard_time": null, "name": "Joyce Bailey", "comment": "Suspendisse potenti.", "date_created": "2016-11-27T08:11:27.026Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 70, "fields": {"is_discard": false, "discard_time": null, "name": "Judy Gray", "comment": "Integer a nibh.", "date_created": "2016-11-27T08:11:27.029Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 71, "fields": {"is_discard": false, "discard_time": null, "name": "Cynthia Black", "comment": "Curabitur at ipsum ac tellus semper interdum.", "date_created": "2016-11-27T08:11:27.031Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 72, "fields": {"is_discard": false, "discard_time": null, "name": "Margaret Foster", "comment": "Duis mattis egestas metus.", "date_created": "2016-11-27T08:11:27.037Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 73, "fields": {"is_discard": false, "discard_time": null, "name": "Marie Nelson", "comment": "Nulla mollis molestie lorem.", "date_created": "2016-11-27T08:11:27.045Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 74, "fields": {"is_discard": false, "discard_time": null, "name": "Janet Kim", "comment": "Aliquam erat volutpat.", "date_created": "2016-11-27T08:11:27.048Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 75, "fields": {"is_discard": false, "discard_time": null, "name": "Katherine Hawkins", "comment": "Suspendisse ornare consequat lectus.", "date_created": "2016-11-27T08:11:27.051Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 76, "fields": {"is_discard": false, "discard_time": null, "name": "Nicole Fernandez", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla.", "date_created": "2016-11-27T08:11:27.054Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 77, "fields": {"is_discard": false, "discard_time": null, "name": "Stephanie Scott", "comment": "Vestibulum sed magna at nunc commodo placerat.", "date_created": "2016-11-27T08:11:27.056Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 78, "fields": {"is_discard": false, "discard_time": null, "name": "Gloria Coleman", "comment": "Etiam justo.", "date_created": "2016-11-27T08:11:27.058Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 79, "fields": {"is_discard": false, "discard_time": null, "name": "Tammy Hunter", "comment": "Proin interdum mauris non ligula pellentesque ultrices.", "date_created": "2016-11-27T08:11:27.060Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 80, "fields": {"is_discard": false, "discard_time": null, "name": "Jessica Stone", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "date_created": "2016-11-27T08:11:27.063Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 81, "fields": {"is_discard": false, "discard_time": null, "name": "Kathryn Sullivan", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam.", "date_created": "2016-11-27T08:11:27.065Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 82, "fields": {"is_discard": false, "discard_time": null, "name": "Pamela Stewart", "comment": "Morbi non lectus.", "date_created": "2016-11-27T08:11:27.067Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 83, "fields": {"is_discard": false, "discard_time": null, "name": "Bonnie Kelley", "comment": "Morbi non quam nec dui luctus rutrum.", "date_created": "2016-11-27T08:11:27.071Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 84, "fields": {"is_discard": false, "discard_time": null, "name": "Jean Stephens", "comment": "Mauris ullamcorper purus sit amet nulla.", "date_created": "2016-11-27T08:11:27.074Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 85, "fields": {"is_discard": false, "discard_time": null, "name": "Elizabeth Boyd", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "date_created": "2016-11-27T08:11:27.077Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 86, "fields": {"is_discard": false, "discard_time": null, "name": "Marilyn Watkins", "comment": "Praesent lectus.", "date_created": "2016-11-27T08:11:27.080Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 87, "fields": {"is_discard": false, "discard_time": null, "name": "Stephanie Ray", "comment": "Aliquam erat volutpat.", "date_created": "2016-11-27T08:11:27.083Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 88, "fields": {"is_discard": false, "discard_time": null, "name": "Melissa Morris", "comment": "Donec quis orci eget orci vehicula condimentum.", "date_created": "2016-11-27T08:11:27.085Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 89, "fields": {"is_discard": false, "discard_time": null, "name": "Lillian Reed", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2016-11-27T08:11:27.088Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 90, "fields": {"is_discard": false, "discard_time": null, "name": "Heather Montgomery", "comment": "Duis bibendum.", "date_created": "2016-11-27T08:11:27.091Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 91, "fields": {"is_discard": false, "discard_time": null, "name": "Tina Campbell", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "date_created": "2016-11-27T08:11:27.095Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 92, "fields": {"is_discard": false, "discard_time": null, "name": "Catherine Lane", "comment": "Cras in purus eu magna vulputate luctus.", "date_created": "2016-11-27T08:11:27.099Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 93, "fields": {"is_discard": false, "discard_time": null, "name": "Heather Jones", "comment": "Nulla ac enim.", "date_created": "2016-11-27T08:11:27.102Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 94, "fields": {"is_discard": false, "discard_time": null, "name": "Dorothy Taylor", "comment": "Integer ac neque.", "date_created": "2016-11-27T08:11:27.105Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 95, "fields": {"is_discard": false, "discard_time": null, "name": "Diane Lewis", "comment": "Aenean auctor gravida sem.", "date_created": "2016-11-27T08:11:27.109Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 96, "fields": {"is_discard": false, "discard_time": null, "name": "Gloria Wallace", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "date_created": "2016-11-27T08:11:27.113Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 97, "fields": {"is_discard": false, "discard_time": null, "name": "Patricia Medina", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue.", "date_created": "2016-11-27T08:11:27.116Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 98, "fields": {"is_discard": false, "discard_time": null, "name": "Lillian Lewis", "comment": "Phasellus id sapien in sapien iaculis congue.", "date_created": "2016-11-27T08:11:27.119Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 99, "fields": {"is_discard": false, "discard_time": null, "name": "Ruth Oliver", "comment": "In congue.", "date_created": "2016-11-27T08:11:27.122Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 100, "fields": {"is_discard": false, "discard_time": null, "name": "Diana Chavez", "comment": "Morbi porttitor lorem id ligula.", "date_created": "2016-11-27T08:11:27.125Z", "created_by": "admin"}}, {"model": "users.usergroup", "pk": 101, "fields": {"is_discard": false, "discard_time": null, "name": "Cynthia Knight", "comment": "Integer a nibh.", "date_created": "2016-11-27T08:11:27.127Z", "created_by": "admin"}}, {"model": "assets.idc", "pk": 1, "fields": {"name": "Judith Graham", "bandwidth": "200M", "contact": "Norma Hicks", "phone": "8-(921)929-5664", "address": "Davis623 Scoville Hill", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.056Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "In quis justo."}}, {"model": "assets.idc", "pk": 2, "fields": {"name": "Jacqueline Simmons", "bandwidth": "200M", "contact": "Amy Watson", "phone": "6-(576)463-9497", "address": "San Juan Capistrano5 Amoth Terrace", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.058Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa."}}, {"model": "assets.idc", "pk": 3, "fields": {"name": "Amanda Reyes", "bandwidth": "200M", "contact": "Catherine Hudson", "phone": "8-(825)308-8558", "address": "Redding845 Badeau Trail", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.059Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Phasellus id sapien in sapien iaculis congue."}}, {"model": "assets.idc", "pk": 4, "fields": {"name": "Christine Black", "bandwidth": "200M", "contact": "Nicole Mccoy", "phone": "8-(359)800-9530", "address": "Rancho Cordova6 Summit Junction", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.060Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum rutrum rutrum neque."}}, {"model": "assets.idc", "pk": 5, "fields": {"name": "Phyllis Kim", "bandwidth": "200M", "contact": "Judith Rice", "phone": "0-(487)548-0380", "address": "Laguna Beach89 Oxford Point", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.062Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Integer a nibh."}}, {"model": "assets.idc", "pk": 6, "fields": {"name": "Andrea Reyes", "bandwidth": "200M", "contact": "Jean Day", "phone": "2-(267)248-9624", "address": "St. Helena42 Sutherland Drive", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.063Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nullam varius."}}, {"model": "assets.idc", "pk": 7, "fields": {"name": "Jean Clark", "bandwidth": "200M", "contact": "Donna Hawkins", "phone": "3-(752)207-0324", "address": "Moorpark473 Dryden Alley", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.064Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Duis bibendum."}}, {"model": "assets.idc", "pk": 8, "fields": {"name": "Stephanie Hunter", "bandwidth": "200M", "contact": "Teresa Daniels", "phone": "1-(756)580-7917", "address": "Winters9 Golf View Drive", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.066Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nulla nisl."}}, {"model": "assets.idc", "pk": 9, "fields": {"name": "Lillian Greene", "bandwidth": "200M", "contact": "Sarah Rose", "phone": "6-(845)164-6298", "address": "Millbrae2951 Rockefeller Street", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.067Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "In sagittis dui vel nisl."}}, {"model": "assets.idc", "pk": 10, "fields": {"name": "Lois Williamson", "bandwidth": "200M", "contact": "Carol Martin", "phone": "9-(571)629-2807", "address": "Citrus Heights30 Warbler Center", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.068Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Phasellus sit amet erat."}}, {"model": "assets.idc", "pk": 11, "fields": {"name": "Margaret Sanders", "bandwidth": "200M", "contact": "Debra Anderson", "phone": "6-(055)703-4865", "address": "Avalon01532 Merrick Trail", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.070Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Vivamus in felis eu sapien cursus vestibulum."}}, {"model": "assets.idc", "pk": 12, "fields": {"name": "Jacqueline Bell", "bandwidth": "200M", "contact": "Kathleen Kim", "phone": "2-(582)884-4454", "address": "Eureka697 Aberg Way", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.071Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Morbi quis tortor id nulla ultrices aliquet."}}, {"model": "assets.idc", "pk": 13, "fields": {"name": "Margaret Murphy", "bandwidth": "200M", "contact": "Pamela Ellis", "phone": "6-(700)486-2663", "address": "Lawndale81629 Cottonwood Avenue", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.072Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Ut at dolor quis odio consequat varius."}}, {"model": "assets.idc", "pk": 14, "fields": {"name": "Sharon Mccoy", "bandwidth": "200M", "contact": "Stephanie Griffin", "phone": "4-(776)260-4620", "address": "Bell10256 Fremont Place", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.074Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl."}}, {"model": "assets.idc", "pk": 15, "fields": {"name": "Nancy Garrett", "bandwidth": "200M", "contact": "Jennifer Peters", "phone": "9-(495)236-7232", "address": "Tehama56 Arizona Road", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.076Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Cras pellentesque volutpat dui."}}, {"model": "assets.idc", "pk": 16, "fields": {"name": "Jennifer Gonzalez", "bandwidth": "200M", "contact": "Diane Howell", "phone": "2-(289)351-3461", "address": "Lompoc830 Meadow Ridge Crossing", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.078Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nullam molestie nibh in lectus."}}, {"model": "assets.idc", "pk": 17, "fields": {"name": "Evelyn Ward", "bandwidth": "200M", "contact": "Kathleen Gray", "phone": "6-(686)804-8085", "address": "Moreno Valley3 Gerald Place", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.079Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue."}}, {"model": "assets.idc", "pk": 18, "fields": {"name": "Amy Hayes", "bandwidth": "200M", "contact": "Kathryn Cruz", "phone": "7-(740)980-8390", "address": "Placerville213 Tony Junction", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.081Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nunc purus."}}, {"model": "assets.idc", "pk": 19, "fields": {"name": "Lillian Stanley", "bandwidth": "200M", "contact": "Martha Roberts", "phone": "7-(376)562-0551", "address": "Laguna Niguel84203 Red Cloud Junction", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.082Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vivamus tortor."}}, {"model": "assets.idc", "pk": 20, "fields": {"name": "Rebecca Matthews", "bandwidth": "200M", "contact": "Virginia Stewart", "phone": "9-(111)107-1632", "address": "Willits73108 Bunting Plaza", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.084Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Aenean lectus."}}, {"model": "assets.idc", "pk": 21, "fields": {"name": "Amanda Howell", "bandwidth": "200M", "contact": "Michelle Jacobs", "phone": "8-(798)305-7497", "address": "Palos Verdes Estates68 Lindbergh Place", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.085Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl."}}, {"model": "assets.idc", "pk": 22, "fields": {"name": "Martha Romero", "bandwidth": "200M", "contact": "Judith Cox", "phone": "8-(253)763-1101", "address": "Nevada City8 Gerald Hill", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.086Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Suspendisse potenti."}}, {"model": "assets.idc", "pk": 23, "fields": {"name": "Lois Freeman", "bandwidth": "200M", "contact": "Janice Clark", "phone": "7-(956)361-3874", "address": "Huntington Park398 Lukken Terrace", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.088Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Curabitur convallis."}}, {"model": "assets.idc", "pk": 24, "fields": {"name": "Helen Marshall", "bandwidth": "200M", "contact": "Kelly Richards", "phone": "0-(524)153-6975", "address": "Arcadia843 Village Hill", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.089Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Fusce consequat."}}, {"model": "assets.idc", "pk": 25, "fields": {"name": "Christina Schmidt", "bandwidth": "200M", "contact": "Patricia Watkins", "phone": "7-(938)187-8926", "address": "South El Monte473 Kings Road", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.092Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla."}}, {"model": "assets.idc", "pk": 26, "fields": {"name": "Pamela Stone", "bandwidth": "200M", "contact": "Anna Welch", "phone": "4-(653)554-4509", "address": "Gilroy3 Westridge Trail", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.094Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Sed ante."}}, {"model": "assets.idc", "pk": 27, "fields": {"name": "Beverly Olson", "bandwidth": "200M", "contact": "Barbara Nelson", "phone": "5-(255)821-1224", "address": "Colton963 Maple Road", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.096Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam."}}, {"model": "assets.idc", "pk": 28, "fields": {"name": "Paula Turner", "bandwidth": "200M", "contact": "Norma Chavez", "phone": "1-(309)363-1253", "address": "Tiburon4 Straubel Circle", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.098Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Aenean sit amet justo."}}, {"model": "assets.idc", "pk": 29, "fields": {"name": "Robin Ward", "bandwidth": "200M", "contact": "Lori Woods", "phone": "5-(234)238-8971", "address": "San Dimas75 Debs Center", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.099Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Suspendisse potenti."}}, {"model": "assets.idc", "pk": 30, "fields": {"name": "Norma Cox", "bandwidth": "200M", "contact": "Pamela Garza", "phone": "1-(792)670-2635", "address": "Culver City9034 Judy Way", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.101Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.idc", "pk": 31, "fields": {"name": "Marilyn Adams", "bandwidth": "200M", "contact": "Louise Harvey", "phone": "3-(998)073-4390", "address": "Foster City309 Merrick Road", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.102Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Morbi porttitor lorem id ligula."}}, {"model": "assets.idc", "pk": 32, "fields": {"name": "Janice Knight", "bandwidth": "200M", "contact": "Paula Price", "phone": "5-(063)381-6314", "address": "Laguna Woods86 Northview Avenue", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.104Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Morbi quis tortor id nulla ultrices aliquet."}}, {"model": "assets.idc", "pk": 33, "fields": {"name": "Elizabeth Marshall", "bandwidth": "200M", "contact": "Mildred Reed", "phone": "4-(707)878-4752", "address": "Turlock27 Bluejay Park", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.105Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Donec quis orci eget orci vehicula condimentum."}}, {"model": "assets.idc", "pk": 34, "fields": {"name": "Karen Little", "bandwidth": "200M", "contact": "Donna Cook", "phone": "1-(769)039-0711", "address": "Auburn73689 Kenwood Way", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.108Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Sed ante."}}, {"model": "assets.idc", "pk": 35, "fields": {"name": "Wanda Myers", "bandwidth": "200M", "contact": "Bonnie Patterson", "phone": "5-(716)991-1428", "address": "Fremont7068 Coleman Hill", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.109Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Duis mattis egestas metus."}}, {"model": "assets.idc", "pk": 36, "fields": {"name": "Jessica Simmons", "bandwidth": "200M", "contact": "Cynthia Johnson", "phone": "7-(125)151-9717", "address": "Greenfield074 Wayridge Hill", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.110Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Integer non velit."}}, {"model": "assets.idc", "pk": 37, "fields": {"name": "Jane Matthews", "bandwidth": "200M", "contact": "Elizabeth Day", "phone": "5-(805)954-7212", "address": "Vacaville094 Kinsman Place", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.112Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Morbi a ipsum."}}, {"model": "assets.idc", "pk": 38, "fields": {"name": "Tammy Mccoy", "bandwidth": "200M", "contact": "Phyllis Austin", "phone": "0-(589)605-1075", "address": "Lynwood60 Moulton Trail", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.113Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Duis mattis egestas metus."}}, {"model": "assets.idc", "pk": 39, "fields": {"name": "Sarah Baker", "bandwidth": "200M", "contact": "Nicole Austin", "phone": "3-(377)749-0637", "address": "Richmond6721 Butternut Alley", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.115Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Ut at dolor quis odio consequat varius."}}, {"model": "assets.idc", "pk": 40, "fields": {"name": "Janice Warren", "bandwidth": "200M", "contact": "Amy Kelly", "phone": "6-(333)154-2634", "address": "Ross076 Arkansas Parkway", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.116Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Cras in purus eu magna vulputate luctus."}}, {"model": "assets.idc", "pk": 41, "fields": {"name": "Laura Robertson", "bandwidth": "200M", "contact": "Shirley Weaver", "phone": "0-(441)007-3235", "address": "Alhambra26 Laurel Alley", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.118Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "In quis justo."}}, {"model": "assets.idc", "pk": 42, "fields": {"name": "Catherine Ramirez", "bandwidth": "200M", "contact": "Rachel White", "phone": "5-(974)442-6478", "address": "Chico54862 Buhler Park", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.119Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nulla suscipit ligula in lacus."}}, {"model": "assets.idc", "pk": 43, "fields": {"name": "Carolyn Perry", "bandwidth": "200M", "contact": "Jessica Burke", "phone": "4-(957)410-1210", "address": "Dunsmuir329 Alpine Circle", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.120Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Aliquam sit amet diam in magna bibendum imperdiet."}}, {"model": "assets.idc", "pk": 44, "fields": {"name": "Ann Green", "bandwidth": "200M", "contact": "Melissa Payne", "phone": "9-(901)245-3104", "address": "Monte Sereno43250 Badeau Way", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.122Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla."}}, {"model": "assets.idc", "pk": 45, "fields": {"name": "Lori Cruz", "bandwidth": "200M", "contact": "Lois Rice", "phone": "8-(994)482-8185", "address": "Buellton24561 Fordem Lane", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.123Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Donec ut mauris eget massa tempor convallis."}}, {"model": "assets.idc", "pk": 46, "fields": {"name": "Irene Hall", "bandwidth": "200M", "contact": "Mary Palmer", "phone": "1-(307)220-4188", "address": "Huron5 Garrison Terrace", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.124Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Phasellus sit amet erat."}}, {"model": "assets.idc", "pk": 47, "fields": {"name": "Marilyn Brown", "bandwidth": "200M", "contact": "Theresa Garza", "phone": "9-(485)938-0715", "address": "Milpitas508 Jackson Way", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.128Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Morbi ut odio."}}, {"model": "assets.idc", "pk": 48, "fields": {"name": "Diane Cooper", "bandwidth": "200M", "contact": "Heather Bell", "phone": "1-(049)852-3855", "address": "Los Gatos105 2nd Junction", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.129Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Curabitur in libero ut massa volutpat convallis."}}, {"model": "assets.idc", "pk": 49, "fields": {"name": "Julie Olson", "bandwidth": "200M", "contact": "Andrea Snyder", "phone": "9-(077)844-3549", "address": "Folsom507 Cherokee Parkway", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.130Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nulla mollis molestie lorem."}}, {"model": "assets.idc", "pk": 50, "fields": {"name": "Annie Young", "bandwidth": "200M", "contact": "Annie Mills", "phone": "9-(745)560-0888", "address": "Farmersville6 Loomis Park", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.132Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Duis ac nibh."}}, {"model": "assets.idc", "pk": 51, "fields": {"name": "Karen Lee", "bandwidth": "200M", "contact": "Melissa Perkins", "phone": "7-(295)299-8147", "address": "Orange41536 Evergreen Circle", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.133Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem."}}, {"model": "assets.idc", "pk": 52, "fields": {"name": "Cheryl Cox", "bandwidth": "200M", "contact": "Jean Cole", "phone": "0-(981)315-8158", "address": "Yountville1504 Thompson Circle", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.135Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Morbi porttitor lorem id ligula."}}, {"model": "assets.idc", "pk": 53, "fields": {"name": "Judy Myers", "bandwidth": "200M", "contact": "Laura Knight", "phone": "2-(874)411-0557", "address": "Lemoore9 Bellgrove Drive", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.136Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Duis ac nibh."}}, {"model": "assets.idc", "pk": 54, "fields": {"name": "Lois Murphy", "bandwidth": "200M", "contact": "Doris Scott", "phone": "5-(919)758-1172", "address": "Jackson07 3rd Parkway", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.138Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est."}}, {"model": "assets.idc", "pk": 55, "fields": {"name": "Louise Willis", "bandwidth": "200M", "contact": "Cheryl Johnston", "phone": "0-(462)716-8086", "address": "Moorpark9327 High Crossing Street", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.140Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo."}}, {"model": "assets.idc", "pk": 56, "fields": {"name": "Carolyn Thomas", "bandwidth": "200M", "contact": "Norma Turner", "phone": "7-(008)385-1789", "address": "Mount Shasta23 Shelley Way", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.142Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante."}}, {"model": "assets.idc", "pk": 57, "fields": {"name": "Christine Garza", "bandwidth": "200M", "contact": "Shirley Taylor", "phone": "8-(277)222-5202", "address": "Hawthorne0 1st Street", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.143Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Cras non velit nec nisi vulputate nonummy."}}, {"model": "assets.idc", "pk": 58, "fields": {"name": "Annie Harris", "bandwidth": "200M", "contact": "Kelly Woods", "phone": "6-(881)925-2988", "address": "Huntington Beach8159 Spaight Crossing", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.145Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Curabitur at ipsum ac tellus semper interdum."}}, {"model": "assets.idc", "pk": 59, "fields": {"name": "Sharon King", "bandwidth": "200M", "contact": "Judy Butler", "phone": "0-(712)361-4844", "address": "Escalon02816 International Hill", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.147Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Pellentesque eget nunc."}}, {"model": "assets.idc", "pk": 60, "fields": {"name": "Annie Ray", "bandwidth": "200M", "contact": "Tina Bell", "phone": "9-(620)116-2035", "address": "Rio Vista64281 Pond Drive", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.149Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus."}}, {"model": "assets.idc", "pk": 61, "fields": {"name": "Patricia Peterson", "bandwidth": "200M", "contact": "Sara Miller", "phone": "7-(052)057-0414", "address": "Portola Valley5672 Warbler Trail", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.150Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Proin eu mi."}}, {"model": "assets.idc", "pk": 62, "fields": {"name": "Christine Porter", "bandwidth": "200M", "contact": "Ann Holmes", "phone": "9-(892)658-0061", "address": "Vista87 Melody Junction", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.152Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nam dui."}}, {"model": "assets.idc", "pk": 63, "fields": {"name": "Nancy Powell", "bandwidth": "200M", "contact": "Ruth Dunn", "phone": "9-(952)202-4756", "address": "Grover Beach10748 Clarendon Court", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.159Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.idc", "pk": 64, "fields": {"name": "Deborah Reid", "bandwidth": "200M", "contact": "Alice Crawford", "phone": "3-(901)331-5848", "address": "Santa Fe Springs074 Banding Trail", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.169Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa."}}, {"model": "assets.idc", "pk": 65, "fields": {"name": "Helen Wilson", "bandwidth": "200M", "contact": "Christine James", "phone": "8-(571)532-1289", "address": "Ventura942 Dorton Terrace", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.177Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Quisque id justo sit amet sapien dignissim vestibulum."}}, {"model": "assets.idc", "pk": 66, "fields": {"name": "Julie Murphy", "bandwidth": "200M", "contact": "Brenda Moreno", "phone": "7-(900)628-3670", "address": "West Covina87039 Erie Center", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.179Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nam tristique tortor eu pede."}}, {"model": "assets.idc", "pk": 67, "fields": {"name": "Louise Scott", "bandwidth": "200M", "contact": "Heather Gray", "phone": "8-(586)926-2531", "address": "Gridley7 Toban Way", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.180Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Fusce posuere felis sed lacus."}}, {"model": "assets.idc", "pk": 68, "fields": {"name": "Jennifer Reynolds", "bandwidth": "200M", "contact": "Norma Flores", "phone": "3-(569)347-4368", "address": "Fort Jones054 Barby Junction", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.181Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Praesent blandit lacinia erat."}}, {"model": "assets.idc", "pk": 69, "fields": {"name": "Maria Cruz", "bandwidth": "200M", "contact": "Lillian Cruz", "phone": "8-(599)143-6983", "address": "Bellflower3850 Towne Drive", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.183Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Vivamus vestibulum sagittis sapien."}}, {"model": "assets.idc", "pk": 70, "fields": {"name": "Bonnie Stanley", "bandwidth": "200M", "contact": "Louise Palmer", "phone": "9-(952)259-9941", "address": "Bishop6 Golf Course Circle", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.184Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Ut tellus."}}, {"model": "assets.idc", "pk": 71, "fields": {"name": "Evelyn Greene", "bandwidth": "200M", "contact": "Beverly Gilbert", "phone": "4-(531)887-7527", "address": "Rancho Mirage812 Clove Drive", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.185Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Proin risus."}}, {"model": "assets.idc", "pk": 72, "fields": {"name": "Rachel Fisher", "bandwidth": "200M", "contact": "Amanda Fox", "phone": "4-(244)193-7543", "address": "Upland63217 Loftsgordon Park", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.187Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Maecenas pulvinar lobortis est."}}, {"model": "assets.idc", "pk": 73, "fields": {"name": "Helen Gibson", "bandwidth": "200M", "contact": "Kimberly Kelley", "phone": "7-(946)642-2510", "address": "Reedley4 Darwin Junction", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.189Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis."}}, {"model": "assets.idc", "pk": 74, "fields": {"name": "Janice Gonzalez", "bandwidth": "200M", "contact": "Maria Knight", "phone": "2-(742)436-5236", "address": "Ross0 Farwell Junction", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.191Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Duis mattis egestas metus."}}, {"model": "assets.idc", "pk": 75, "fields": {"name": "Norma Ellis", "bandwidth": "200M", "contact": "Rachel Lee", "phone": "4-(511)377-6966", "address": "Santa Clarita1 7th Court", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.193Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Curabitur gravida nisi at nibh."}}, {"model": "assets.idc", "pk": 76, "fields": {"name": "Patricia Watson", "bandwidth": "200M", "contact": "Evelyn Arnold", "phone": "3-(498)258-3750", "address": "Calistoga8 Sachtjen Terrace", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.195Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Curabitur gravida nisi at nibh."}}, {"model": "assets.idc", "pk": 77, "fields": {"name": "Jennifer Flores", "bandwidth": "200M", "contact": "Stephanie Webb", "phone": "0-(636)479-0431", "address": "Escalon32 Sheridan Court", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.197Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Vivamus vestibulum sagittis sapien."}}, {"model": "assets.idc", "pk": 78, "fields": {"name": "Frances Hunt", "bandwidth": "200M", "contact": "Sandra Collins", "phone": "2-(857)805-7141", "address": "Duarte47 Anthes Place", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.198Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nam dui."}}, {"model": "assets.idc", "pk": 79, "fields": {"name": "Stephanie Simmons", "bandwidth": "200M", "contact": "Denise Hanson", "phone": "1-(258)612-6636", "address": "Windsor1 Melby Drive", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.200Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit."}}, {"model": "assets.idc", "pk": 80, "fields": {"name": "Maria Perez", "bandwidth": "200M", "contact": "Katherine Nelson", "phone": "7-(318)067-5063", "address": "Tiburon4386 Autumn Leaf Trail", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.202Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh."}}, {"model": "assets.idc", "pk": 81, "fields": {"name": "Janice Hansen", "bandwidth": "200M", "contact": "Angela Carter", "phone": "8-(672)507-0842", "address": "Antioch546 Meadow Valley Junction", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.203Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Morbi quis tortor id nulla ultrices aliquet."}}, {"model": "assets.idc", "pk": 82, "fields": {"name": "Tammy Hernandez", "bandwidth": "200M", "contact": "Marie Warren", "phone": "6-(635)075-7963", "address": "Belvedere14278 Clyde Gallagher Junction", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.205Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nulla tempus."}}, {"model": "assets.idc", "pk": 83, "fields": {"name": "Linda Scott", "bandwidth": "200M", "contact": "Ann Snyder", "phone": "9-(010)935-9634", "address": "Portola Valley5 Dorton Avenue", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.206Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Suspendisse potenti."}}, {"model": "assets.idc", "pk": 84, "fields": {"name": "Annie Hernandez", "bandwidth": "200M", "contact": "Cheryl Fuller", "phone": "7-(422)514-6268", "address": "Carpinteria48 Boyd Parkway", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.208Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Morbi ut odio."}}, {"model": "assets.idc", "pk": 85, "fields": {"name": "Angela Mccoy", "bandwidth": "200M", "contact": "Angela Woods", "phone": "6-(533)491-0098", "address": "Rancho Cordova2 Schurz Place", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.211Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Aenean fermentum."}}, {"model": "assets.idc", "pk": 86, "fields": {"name": "Deborah Willis", "bandwidth": "200M", "contact": "Frances Bailey", "phone": "5-(563)585-7440", "address": "Buena Park5 Parkside Street", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.215Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Integer a nibh."}}, {"model": "assets.idc", "pk": 87, "fields": {"name": "Jean Wells", "bandwidth": "200M", "contact": "Linda Morales", "phone": "8-(815)214-6222", "address": "Grass Valley5947 Fairview Avenue", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.218Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi."}}, {"model": "assets.idc", "pk": 88, "fields": {"name": "Lois Ford", "bandwidth": "200M", "contact": "Rachel Jordan", "phone": "8-(902)016-8310", "address": "Yuba City20 Beilfuss Terrace", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.220Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Aliquam non mauris."}}, {"model": "assets.idc", "pk": 89, "fields": {"name": "Heather Wood", "bandwidth": "200M", "contact": "Lillian Mendoza", "phone": "7-(636)084-9337", "address": "Guadalupe1753 Doe Crossing Center", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.223Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Integer tincidunt ante vel ipsum."}}, {"model": "assets.idc", "pk": 90, "fields": {"name": "Gloria Mills", "bandwidth": "200M", "contact": "Shirley Reid", "phone": "2-(009)653-8260", "address": "Maricopa9502 Northport Lane", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.227Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Donec dapibus."}}, {"model": "assets.idc", "pk": 91, "fields": {"name": "Norma Hart", "bandwidth": "200M", "contact": "Sharon Collins", "phone": "6-(415)241-1645", "address": "Needles6 Golf Course Drive", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.230Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Donec ut dolor."}}, {"model": "assets.idc", "pk": 92, "fields": {"name": "Christine Murphy", "bandwidth": "200M", "contact": "Pamela Adams", "phone": "4-(375)829-2554", "address": "Loma Linda3519 Golden Leaf Parkway", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.233Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Maecenas ut massa quis augue luctus tincidunt."}}, {"model": "assets.idc", "pk": 93, "fields": {"name": "Karen Elliott", "bandwidth": "200M", "contact": "Angela Hall", "phone": "8-(344)673-6981", "address": "Oakland56719 Doe Crossing Terrace", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.236Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Proin interdum mauris non ligula pellentesque ultrices."}}, {"model": "assets.idc", "pk": 94, "fields": {"name": "Donna Alexander", "bandwidth": "200M", "contact": "Sara Ellis", "phone": "6-(405)589-3911", "address": "Lawndale6 Delladonna Way", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.239Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nullam porttitor lacus at turpis."}}, {"model": "assets.idc", "pk": 95, "fields": {"name": "Ann Powell", "bandwidth": "200M", "contact": "Joyce Stanley", "phone": "2-(830)952-1740", "address": "Auburn1 Cody Parkway", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.242Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Aenean auctor gravida sem."}}, {"model": "assets.idc", "pk": 96, "fields": {"name": "Janice Collins", "bandwidth": "200M", "contact": "Wanda Hill", "phone": "5-(032)939-3848", "address": "Danville9715 Fordem Terrace", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.245Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Duis aliquam convallis nunc."}}, {"model": "assets.idc", "pk": 97, "fields": {"name": "Teresa Woods", "bandwidth": "200M", "contact": "Ruth Hall", "phone": "2-(154)083-5633", "address": "Fillmore5478 Moulton Center", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.247Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Donec semper sapien a libero."}}, {"model": "assets.idc", "pk": 98, "fields": {"name": "Marilyn Garza", "bandwidth": "200M", "contact": "Dorothy Medina", "phone": "2-(715)905-6206", "address": "Glendora780 Monterey Place", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.250Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Pellentesque viverra pede ac diam."}}, {"model": "assets.idc", "pk": 99, "fields": {"name": "Rose Evans", "bandwidth": "200M", "contact": "Barbara Ruiz", "phone": "2-(891)804-2061", "address": "Carmel-by-the-Sea91 Sloan Avenue", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.252Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Etiam justo."}}, {"model": "assets.idc", "pk": 100, "fields": {"name": "Paula Wheeler", "bandwidth": "200M", "contact": "Judith Turner", "phone": "5-(134)837-5103", "address": "Newark9 Jana Center", "intranet": "", "extranet": "", "date_created": "2016-11-27T08:11:46.255Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est."}}, {"model": "assets.adminuser", "pk": 1, "fields": {"name": "Angela Little", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjIg.m7atEKEFx68VZmM2clat-RyHmCQmR0lrKJ2VrzecInw", "_private_key": null, "_public_key": "", "comment": "Sed ante.", "date_created": "2016-11-27T08:11:46.260Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 2, "fields": {"name": "Virginia Stewart", "username": "sara", "_password": "eyJhbGciOiJIUzI1NiJ9.InB1cnVzIg.mQIecvkKZ9Kr449nF9gyvo0sVXOqOt2yf-bgvaC8hIo", "_private_key": null, "_public_key": "", "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-27T08:11:46.263Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 3, "fields": {"name": "Stephanie Black", "username": "judith", "_password": "eyJhbGciOiJIUzI1NiJ9.ImR1aSI.AYqnix4dp06WLJ645L4MAveLycKVrZSyNjJnIq0fU2g", "_private_key": null, "_public_key": "", "comment": "Curabitur at ipsum ac tellus semper interdum.", "date_created": "2016-11-27T08:11:46.267Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 4, "fields": {"name": "Linda Daniels", "username": "ruth", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "_private_key": null, "_public_key": "", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "date_created": "2016-11-27T08:11:46.268Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 5, "fields": {"name": "Ashley Chavez", "username": "sara", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pc2ki.n-Lu5aSHiUvxHk4WAgVl5rBKooF4O9p22BV1JS22TCc", "_private_key": null, "_public_key": "", "comment": "Vestibulum sed magna at nunc commodo placerat.", "date_created": "2016-11-27T08:11:46.270Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 6, "fields": {"name": "Rebecca Howell", "username": "beverly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpYW0i.ptlstDxIX3roDa9-XgVcwFcuugOtvaVsjm7xvHG29s4", "_private_key": null, "_public_key": "", "comment": "Duis ac nibh.", "date_created": "2016-11-27T08:11:46.271Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 7, "fields": {"name": "Sandra Brown", "username": "judith", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlbSI.q-swGD6R0EwFfj3GvW7opSLXFGPAGIRB_cDeho2N0oc", "_private_key": null, "_public_key": "", "comment": "Curabitur in libero ut massa volutpat convallis.", "date_created": "2016-11-27T08:11:46.273Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 8, "fields": {"name": "Jacqueline Roberts", "username": "diane", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvdGVudGki.gVzkkI6p2yD2ovfIZrG88LPZYqWz3jIhPNRkRx2okDw", "_private_key": null, "_public_key": "", "comment": "Integer non velit.", "date_created": "2016-11-27T08:11:46.275Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 9, "fields": {"name": "Martha Berry", "username": "brenda", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVzdCI.kqn80ndZDQ0Gc7AnT112KsF2joNDpppfPsuPxS6cOwk", "_private_key": null, "_public_key": "", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "date_created": "2016-11-27T08:11:46.276Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 10, "fields": {"name": "Frances Mendoza", "username": "deborah", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRvbG9yIg.6-B7AtjwRtbLWBw3cOl1AmdKgGqNOg3JxMnsEk3sI-Y", "_private_key": null, "_public_key": "", "comment": "Morbi ut odio.", "date_created": "2016-11-27T08:11:46.278Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 11, "fields": {"name": "Diane Bowman", "username": "amy", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "_private_key": null, "_public_key": "", "comment": "Suspendisse accumsan tortor quis turpis.", "date_created": "2016-11-27T08:11:46.279Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 12, "fields": {"name": "Tammy Austin", "username": "teresa", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pc2wi.bGZH4pJ2wkHxRxfDvzi1ePhYmirT4ibQ-uvsullA4pE", "_private_key": null, "_public_key": "", "comment": "Praesent blandit.", "date_created": "2016-11-27T08:11:46.281Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 13, "fields": {"name": "Ann Murphy", "username": "kathryn", "_password": "eyJhbGciOiJIUzI1NiJ9.ImN1YmlsaWEi.68DQVCMmeZQyAGqE4SJAPFBiBwMaPVZ0J7zxj8a0WV8", "_private_key": null, "_public_key": "", "comment": "Praesent id massa id nisl venenatis lacinia.", "date_created": "2016-11-27T08:11:46.282Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 14, "fields": {"name": "Heather Torres", "username": "marilyn", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvc3VlcmUi.HiqInzbNn9wLyMamRM3OfwBYJ9q4n297DvZzFFDwN7w", "_private_key": null, "_public_key": "", "comment": "Mauris ullamcorper purus sit amet nulla.", "date_created": "2016-11-27T08:11:46.284Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 15, "fields": {"name": "Bonnie Hamilton", "username": "joyce", "_password": "eyJhbGciOiJIUzI1NiJ9.Imlwc3VtIg.rZpQHFzRecdHsQN3Et2YmLCm6zfPo_XFOeE-vz-CLe0", "_private_key": null, "_public_key": "", "comment": "Pellentesque eget nunc.", "date_created": "2016-11-27T08:11:46.285Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 16, "fields": {"name": "Jane Wilson", "username": "virginia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImN1bSI.ImVe-w9aP8Cgy63s9gjRbbkyMcPJjGesms-MUI7QKvE", "_private_key": null, "_public_key": "", "comment": "Nulla mollis molestie lorem.", "date_created": "2016-11-27T08:11:46.287Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 17, "fields": {"name": "Janice Richards", "username": "cynthia", "_password": "eyJhbGciOiJIUzI1NiJ9.InByb2luIg.j4I43DiE0E2dweGu63szcIkK6MrpiW1Iyr8uolb1eoI", "_private_key": null, "_public_key": "", "comment": "Etiam justo.", "date_created": "2016-11-27T08:11:46.288Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 18, "fields": {"name": "Norma Larson", "username": "catherine", "_password": "eyJhbGciOiJIUzI1NiJ9.InNhcGllbiI.FV7Fd4y2296g887c98VrXRInZMVQulodf4KOSrBCWog", "_private_key": null, "_public_key": "", "comment": "Phasellus id sapien in sapien iaculis congue.", "date_created": "2016-11-27T08:11:46.291Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 19, "fields": {"name": "Paula Griffin", "username": "kathy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF1Y3RvciI.hSbx7NEdaQmgntQbSQ_Lx9tUcIj8U1eRls86nyml8Zc", "_private_key": null, "_public_key": "", "comment": "Nulla justo.", "date_created": "2016-11-27T08:11:46.292Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 20, "fields": {"name": "Michelle Hunter", "username": "rebecca", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFtZXQi.k9EjNQL559Kyrp0ygulJ1FYqzM9PWKz9BZ7NqyeyH2o", "_private_key": null, "_public_key": "", "comment": "Morbi non quam nec dui luctus rutrum.", "date_created": "2016-11-27T08:11:46.293Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 21, "fields": {"name": "Diane Day", "username": "debra", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2VzIg.7CaOCTzCJiIrdVZn5wu5ObQCcCWGmdmgQLjfJvP7IQY", "_private_key": null, "_public_key": "", "comment": "Nunc purus.", "date_created": "2016-11-27T08:11:46.295Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 22, "fields": {"name": "Amanda Brooks", "username": "pamela", "_password": "eyJhbGciOiJIUzI1NiJ9.InNhcGllbiI.FV7Fd4y2296g887c98VrXRInZMVQulodf4KOSrBCWog", "_private_key": null, "_public_key": "", "comment": "Maecenas ut massa quis augue luctus tincidunt.", "date_created": "2016-11-27T08:11:46.297Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 23, "fields": {"name": "Lisa Burke", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnZhbGxpcyI.B_NDb4qHOmbgsEcxTJAb9xrXBHPzya03jDjrKhXztJU", "_private_key": null, "_public_key": "", "comment": "Quisque ut erat.", "date_created": "2016-11-27T08:11:46.298Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 24, "fields": {"name": "Kathy Jackson", "username": "virginia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImN1cmFiaXR1ciI.2ljW1YM6ByuGTBHXIP4tXMSyLF3MjpjpSrVJ0VNGFNY", "_private_key": null, "_public_key": "", "comment": "Donec dapibus.", "date_created": "2016-11-27T08:11:46.300Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 25, "fields": {"name": "Sharon Foster", "username": "diane", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vbnRlcyI.U9-mPLi3PtAqPA0X37T_EcxCjKiiMYB8waKn_zTTLqI", "_private_key": null, "_public_key": "", "comment": "Duis at velit eu est congue elementum.", "date_created": "2016-11-27T08:11:46.302Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 26, "fields": {"name": "Kathleen Simmons", "username": "julie", "_password": "eyJhbGciOiJIUzI1NiJ9.InNhZ2l0dGlzIg.3Bi_u95FE3rtgZOoqk8FyFU9_pncEEajQ0EqTtOvPEc", "_private_key": null, "_public_key": "", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "date_created": "2016-11-27T08:11:46.304Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 27, "fields": {"name": "Jane Castillo", "username": "kathy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0aWFtIg.QEs0SICruIrhYPzqpEG9iKLje7wzoW601XZyyGFsWnk", "_private_key": null, "_public_key": "", "comment": "Pellentesque eget nunc.", "date_created": "2016-11-27T08:11:46.305Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 28, "fields": {"name": "Tammy Lynch", "username": "jane", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5hbSI.jEaDr7Y5DsPRdsS21cGYlPi-w3xgG8yJbKjJDhqbSDc", "_private_key": null, "_public_key": "", "comment": "Vestibulum sed magna at nunc commodo placerat.", "date_created": "2016-11-27T08:11:46.307Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 29, "fields": {"name": "Joan Knight", "username": "rachel", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvdGVudGki.gVzkkI6p2yD2ovfIZrG88LPZYqWz3jIhPNRkRx2okDw", "_private_key": null, "_public_key": "", "comment": "Vivamus vel nulla eget eros elementum pellentesque.", "date_created": "2016-11-27T08:11:46.309Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 30, "fields": {"name": "Frances Fisher", "username": "tina", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnNlcXVhdCI.vLRDCJLof2aVuDu2Ozh-ogfuPPmKCcg9NxF47WcQqig", "_private_key": null, "_public_key": "", "comment": "Pellentesque eget nunc.", "date_created": "2016-11-27T08:11:46.311Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 31, "fields": {"name": "Maria Barnes", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "_private_key": null, "_public_key": "", "comment": "Nulla tellus.", "date_created": "2016-11-27T08:11:46.312Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 32, "fields": {"name": "Diana Foster", "username": "ruby", "_password": "eyJhbGciOiJIUzI1NiJ9.ImN1bSI.ImVe-w9aP8Cgy63s9gjRbbkyMcPJjGesms-MUI7QKvE", "_private_key": null, "_public_key": "", "comment": "Nulla nisl.", "date_created": "2016-11-27T08:11:46.314Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 33, "fields": {"name": "Frances Parker", "username": "gloria", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "_private_key": null, "_public_key": "", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "date_created": "2016-11-27T08:11:46.315Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 34, "fields": {"name": "Barbara Garza", "username": "cheryl", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyb3Mi.u6zpIQpfh7cgPYmscg5N0W9W6cx274KgMtp0pz5_OlY", "_private_key": null, "_public_key": "", "comment": "Aenean sit amet justo.", "date_created": "2016-11-27T08:11:46.317Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 35, "fields": {"name": "Anna Simpson", "username": "judith", "_password": "eyJhbGciOiJIUzI1NiJ9.ImhlbmRyZXJpdCI.w37x36SBpiyhDWKVAtj2fw-T7HIkb-qBU5LHWA03DMY", "_private_key": null, "_public_key": "", "comment": "Nullam molestie nibh in lectus.", "date_created": "2016-11-27T08:11:46.318Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 36, "fields": {"name": "Carolyn Robertson", "username": "kathryn", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFsaXF1YW0i.ROd2JUuL9lh3hBqwH2HJ7tf8zsYXtJR776EsV1Jpvnw", "_private_key": null, "_public_key": "", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "date_created": "2016-11-27T08:11:46.320Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 37, "fields": {"name": "Laura Perkins", "username": "mildred", "_password": "eyJhbGciOiJIUzI1NiJ9.ImJsYW5kaXQi.ib6BRTHTJx8JP6SbdGdZc1_HRSsZHp9wj-FC4vN41ic", "_private_key": null, "_public_key": "", "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-27T08:11:46.321Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 38, "fields": {"name": "Doris Gibson", "username": "bonnie", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlaGljdWxhIg.24RL7x_K4-FG6MSYl7ekdNgShs6FvH2AA0I4gSogttU", "_private_key": null, "_public_key": "", "comment": "Quisque porta volutpat erat.", "date_created": "2016-11-27T08:11:46.323Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 39, "fields": {"name": "Deborah Evans", "username": "janice", "_password": "eyJhbGciOiJIUzI1NiJ9.InJ1dHJ1bSI.e9e4AJVlXCLyu2tkGWKY-NsMt-cO_6iX0iBXXzYWWNs", "_private_key": null, "_public_key": "", "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-27T08:11:46.324Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 40, "fields": {"name": "Christina Brown", "username": "shirley", "_password": "eyJhbGciOiJIUzI1NiJ9.InZ1bHB1dGF0ZSI.HAxmcbbI0_SkIFV_ZOG8ZxC0XPSHCWZVLpdWO6lO8oc", "_private_key": null, "_public_key": "", "comment": "Cras non velit nec nisi vulputate nonummy.", "date_created": "2016-11-27T08:11:46.325Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 41, "fields": {"name": "Amy Fox", "username": "michelle", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVsZW1lbnR1bSI.VjtnnN56wvXKPow-CFfs9h8bQk7BgGHfga7eFM8Qy_w", "_private_key": null, "_public_key": "", "comment": "Nulla suscipit ligula in lacus.", "date_created": "2016-11-27T08:11:46.327Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 42, "fields": {"name": "Frances Richardson", "username": "kathy", "_password": "eyJhbGciOiJIUzI1NiJ9.Imp1c3RvIg.OGeg0BhoHWufHxSObxdYqHFC3zur8llMFj8veLxbAFY", "_private_key": null, "_public_key": "", "comment": "Proin risus.", "date_created": "2016-11-27T08:11:46.329Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 43, "fields": {"name": "Diana Harris", "username": "kimberly", "_password": "eyJhbGciOiJIUzI1NiJ9.InB1cnVzIg.mQIecvkKZ9Kr449nF9gyvo0sVXOqOt2yf-bgvaC8hIo", "_private_key": null, "_public_key": "", "comment": "Phasellus id sapien in sapien iaculis congue.", "date_created": "2016-11-27T08:11:46.330Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 44, "fields": {"name": "Joan Arnold", "username": "angela", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxlbyI.qTN86wuszuz1DJYzlN4xnIOKk4BnSDGx-SrJn18aLxE", "_private_key": null, "_public_key": "", "comment": "Etiam justo.", "date_created": "2016-11-27T08:11:46.332Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 45, "fields": {"name": "Bonnie Hernandez", "username": "nicole", "_password": "eyJhbGciOiJIUzI1NiJ9.Imlwc3VtIg.rZpQHFzRecdHsQN3Et2YmLCm6zfPo_XFOeE-vz-CLe0", "_private_key": null, "_public_key": "", "comment": "In hac habitasse platea dictumst.", "date_created": "2016-11-27T08:11:46.334Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 46, "fields": {"name": "Jean Sanders", "username": "barbara", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF0Ig.KKCMSzsOJLvrGcheEd9SDxRwZhts01BoZ0xyuxHx4Y0", "_private_key": null, "_public_key": "", "comment": "Nam dui.", "date_created": "2016-11-27T08:11:46.335Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 47, "fields": {"name": "Mary Fisher", "username": "katherine", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5lYyI.LKXtwRVgPGpIFsCWDaqgz1FeQ0uuEIthkh3bbD8r6bI", "_private_key": null, "_public_key": "", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "date_created": "2016-11-27T08:11:46.337Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 48, "fields": {"name": "Virginia Weaver", "username": "mildred", "_password": "eyJhbGciOiJIUzI1NiJ9.ImN1cmFiaXR1ciI.2ljW1YM6ByuGTBHXIP4tXMSyLF3MjpjpSrVJ0VNGFNY", "_private_key": null, "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio.", "date_created": "2016-11-27T08:11:46.339Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 49, "fields": {"name": "Amanda Porter", "username": "virginia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF1Z3VlIg.crP2_jl_o91zD62WaHCevBI_9ScRk6cXhXtPdAVGOYQ", "_private_key": null, "_public_key": "", "comment": "Duis at velit eu est congue elementum.", "date_created": "2016-11-27T08:11:46.341Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 50, "fields": {"name": "Linda Frazier", "username": "maria", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "_private_key": null, "_public_key": "", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "date_created": "2016-11-27T08:11:46.343Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 51, "fields": {"name": "Christine Lawson", "username": "doris", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "_private_key": null, "_public_key": "", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "date_created": "2016-11-27T08:11:46.345Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 52, "fields": {"name": "Heather Hall", "username": "linda", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5vbiI.pwMNExwLCmk9BWKxw3hxw9K9h0YRh102FvLNRKTumRs", "_private_key": null, "_public_key": "", "comment": "Nulla suscipit ligula in lacus.", "date_created": "2016-11-27T08:11:46.347Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 53, "fields": {"name": "Tina Ruiz", "username": "denise", "_password": "eyJhbGciOiJIUzI1NiJ9.InNpdCI.qhSlAh3rB-ai6rdQ-gxKBSFGhk-AbwiFe_CqQxSS3hM", "_private_key": null, "_public_key": "", "comment": "Morbi porttitor lorem id ligula.", "date_created": "2016-11-27T08:11:46.349Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 54, "fields": {"name": "Donna Dunn", "username": "helen", "_password": "eyJhbGciOiJIUzI1NiJ9.Imx1Y3R1cyI.HgJMJ_hzKIXE6FmvnIJpfQbY4kKS5qd1c2IJ_GxPdqQ", "_private_key": null, "_public_key": "", "comment": "Cras in purus eu magna vulputate luctus.", "date_created": "2016-11-27T08:11:46.351Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 55, "fields": {"name": "Christine Johnson", "username": "cynthia", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hdXJpcyI.jcR8xjLt9WrET56Nes7q2CdkHYJAWb7Y2d--saQSumY", "_private_key": null, "_public_key": "", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "date_created": "2016-11-27T08:11:46.352Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 56, "fields": {"name": "Frances Phillips", "username": "margaret", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxlY3R1cyI.7T1IUgQEmo1rg4yMJ17FiAP48rzB174UhQ0vFbK15QM", "_private_key": null, "_public_key": "", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "date_created": "2016-11-27T08:11:46.354Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 57, "fields": {"name": "Pamela Mitchell", "username": "donna", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvcnR0aXRvciI.yYTCpVrahrmYF_MZecG2-63m96KAf7yAzZqmkq8J_V8", "_private_key": null, "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi.", "date_created": "2016-11-27T08:11:46.356Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 58, "fields": {"name": "Ruby Wilson", "username": "diane", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "_private_key": null, "_public_key": "", "comment": "In sagittis dui vel nisl.", "date_created": "2016-11-27T08:11:46.357Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 59, "fields": {"name": "Marie Ramos", "username": "lois", "_password": "eyJhbGciOiJIUzI1NiJ9.InRpbmNpZHVudCI.nJRX3abQiMg6iUZpF2Ek_kygvgbo8fIUG4zHAh7o9n4", "_private_key": null, "_public_key": "", "comment": "Nunc purus.", "date_created": "2016-11-27T08:11:46.359Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 60, "fields": {"name": "Joyce Jackson", "username": "susan", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjY3Vtc2FuIg.NEwnlPlaG9Pa0nEXxhV8A18g-06uqxUCQ4zExhAPf3w", "_private_key": null, "_public_key": "", "comment": "Sed ante.", "date_created": "2016-11-27T08:11:46.361Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 61, "fields": {"name": "Bonnie Hart", "username": "irene", "_password": "eyJhbGciOiJIUzI1NiJ9.InJob25jdXMi.zc47wfesB5fcJ-oBaHagDTV8j2ml3oDL---yZnXFmX4", "_private_key": null, "_public_key": "", "comment": "Nulla tempus.", "date_created": "2016-11-27T08:11:46.363Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 62, "fields": {"name": "Kathryn Vasquez", "username": "joan", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxhY3VzIg.5qb9T3IIsVs5n_iBbzv8nrWqk09znRmR7jt78D3ReH0", "_private_key": null, "_public_key": "", "comment": "Mauris sit amet eros.", "date_created": "2016-11-27T08:11:46.365Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 63, "fields": {"name": "Emily Kim", "username": "evelyn", "_password": "eyJhbGciOiJIUzI1NiJ9.InBsYWNlcmF0Ig.kxIB8lu5D1QiRe0-JXrZGDOGqVX4llGR36rV7ZidWTk", "_private_key": null, "_public_key": "", "comment": "Vivamus in felis eu sapien cursus vestibulum.", "date_created": "2016-11-27T08:11:46.367Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 64, "fields": {"name": "Mary Harper", "username": "jane", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2VzIg.7CaOCTzCJiIrdVZn5wu5ObQCcCWGmdmgQLjfJvP7IQY", "_private_key": null, "_public_key": "", "comment": "Etiam justo.", "date_created": "2016-11-27T08:11:46.368Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 65, "fields": {"name": "Susan Thomas", "username": "kathleen", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9yY2ki.-H3gNP0GV0UZFR_MqKCCWMiaRDBQRRkfHxX2uojMk74", "_private_key": null, "_public_key": "", "comment": "Nam tristique tortor eu pede.", "date_created": "2016-11-27T08:11:46.369Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 66, "fields": {"name": "Bonnie Anderson", "username": "jennifer", "_password": "eyJhbGciOiJIUzI1NiJ9.InNhcGllbiI.FV7Fd4y2296g887c98VrXRInZMVQulodf4KOSrBCWog", "_private_key": null, "_public_key": "", "comment": "Mauris lacinia sapien quis libero.", "date_created": "2016-11-27T08:11:46.371Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 67, "fields": {"name": "Brenda Lewis", "username": "martha", "_password": "eyJhbGciOiJIUzI1NiJ9.InB1cnVzIg.mQIecvkKZ9Kr449nF9gyvo0sVXOqOt2yf-bgvaC8hIo", "_private_key": null, "_public_key": "", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "date_created": "2016-11-27T08:11:46.373Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 68, "fields": {"name": "Anne Castillo", "username": "diane", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "_private_key": null, "_public_key": "", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "date_created": "2016-11-27T08:11:46.375Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 69, "fields": {"name": "Denise Vasquez", "username": "jessica", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "_private_key": null, "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "date_created": "2016-11-27T08:11:46.378Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 70, "fields": {"name": "Kathryn Rogers", "username": "deborah", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF1Z3VlIg.crP2_jl_o91zD62WaHCevBI_9ScRk6cXhXtPdAVGOYQ", "_private_key": null, "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio.", "date_created": "2016-11-27T08:11:46.380Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 71, "fields": {"name": "Joan Ruiz", "username": "bonnie", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "_private_key": null, "_public_key": "", "comment": "Etiam faucibus cursus urna.", "date_created": "2016-11-27T08:11:46.382Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 72, "fields": {"name": "Sara Hudson", "username": "laura", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "_private_key": null, "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "date_created": "2016-11-27T08:11:46.384Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 73, "fields": {"name": "Tammy Long", "username": "deborah", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "_private_key": null, "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "date_created": "2016-11-27T08:11:46.388Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 74, "fields": {"name": "Theresa Kelly", "username": "sharon", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "_private_key": null, "_public_key": "", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "date_created": "2016-11-27T08:11:46.390Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 75, "fields": {"name": "Denise Shaw", "username": "irene", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbCI.ETImZ-BkJk0sqh2IFBILiQXV2aDn_mEZV3b-qIUDQBo", "_private_key": null, "_public_key": "", "comment": "Suspendisse potenti.", "date_created": "2016-11-27T08:11:46.393Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 76, "fields": {"name": "Deborah Mitchell", "username": "evelyn", "_password": "eyJhbGciOiJIUzI1NiJ9.InJpc3VzIg.X2SL1k_46FoTAmU-hg5tLW8qbcvqcFfgLJSAPQrLZZA", "_private_key": null, "_public_key": "", "comment": "Curabitur gravida nisi at nibh.", "date_created": "2016-11-27T08:11:46.395Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 77, "fields": {"name": "Denise Young", "username": "louise", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pc2wi.bGZH4pJ2wkHxRxfDvzi1ePhYmirT4ibQ-uvsullA4pE", "_private_key": null, "_public_key": "", "comment": "Morbi ut odio.", "date_created": "2016-11-27T08:11:46.398Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 78, "fields": {"name": "Betty Carter", "username": "carol", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpZ25pc3NpbSI.PZwbth19mgCdfgv1LlU424tnbk5CNu52pStG5VcOXBc", "_private_key": null, "_public_key": "", "comment": "Curabitur at ipsum ac tellus semper interdum.", "date_created": "2016-11-27T08:11:46.400Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 79, "fields": {"name": "Paula Hayes", "username": "kathryn", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnZhbGxpcyI.B_NDb4qHOmbgsEcxTJAb9xrXBHPzya03jDjrKhXztJU", "_private_key": null, "_public_key": "", "comment": "Nulla tellus.", "date_created": "2016-11-27T08:11:46.402Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 80, "fields": {"name": "Julie Stewart", "username": "ashley", "_password": "eyJhbGciOiJIUzI1NiJ9.InN1c2NpcGl0Ig.Z61mFiu2oDhYJjR0Be_bppgWlu5yNIbatQroqyG17Hc", "_private_key": null, "_public_key": "", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci.", "date_created": "2016-11-27T08:11:46.404Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 81, "fields": {"name": "Norma Johnston", "username": "emily", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "_private_key": null, "_public_key": "", "comment": "Donec vitae nisi.", "date_created": "2016-11-27T08:11:46.406Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 82, "fields": {"name": "Ruth Cunningham", "username": "doris", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "_private_key": null, "_public_key": "", "comment": "Nulla justo.", "date_created": "2016-11-27T08:11:46.408Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 83, "fields": {"name": "Theresa Fowler", "username": "rachel", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvc3VlcmUi.HiqInzbNn9wLyMamRM3OfwBYJ9q4n297DvZzFFDwN7w", "_private_key": null, "_public_key": "", "comment": "Donec dapibus.", "date_created": "2016-11-27T08:11:46.411Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 84, "fields": {"name": "Diane Carr", "username": "anna", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9kaW8i.1qhr1N7Gn0TJEa_Q7rIWvOTqqMKwFcHXP7BomzX7J7Q", "_private_key": null, "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi.", "date_created": "2016-11-27T08:11:46.413Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 85, "fields": {"name": "Teresa Hanson", "username": "jean", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "_private_key": null, "_public_key": "", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo.", "date_created": "2016-11-27T08:11:46.416Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 86, "fields": {"name": "Cynthia Larson", "username": "shirley", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRvbmVjIg.ETQR821NXkrnq13LeE4BygCe_fvaFDJggsQ1ghFFfNU", "_private_key": null, "_public_key": "", "comment": "Pellentesque eget nunc.", "date_created": "2016-11-27T08:11:46.418Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 87, "fields": {"name": "Julie Bell", "username": "julie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpYW0i.ptlstDxIX3roDa9-XgVcwFcuugOtvaVsjm7xvHG29s4", "_private_key": null, "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2016-11-27T08:11:46.420Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 88, "fields": {"name": "Amy Gibson", "username": "sarah", "_password": "eyJhbGciOiJIUzI1NiJ9.Imlwc3VtIg.rZpQHFzRecdHsQN3Et2YmLCm6zfPo_XFOeE-vz-CLe0", "_private_key": null, "_public_key": "", "comment": "Pellentesque ultrices mattis odio.", "date_created": "2016-11-27T08:11:46.423Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 89, "fields": {"name": "Kelly Gonzales", "username": "joyce", "_password": "eyJhbGciOiJIUzI1NiJ9.InNpdCI.qhSlAh3rB-ai6rdQ-gxKBSFGhk-AbwiFe_CqQxSS3hM", "_private_key": null, "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "date_created": "2016-11-27T08:11:46.425Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 90, "fields": {"name": "Melissa Harrison", "username": "bonnie", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2VzIg.7CaOCTzCJiIrdVZn5wu5ObQCcCWGmdmgQLjfJvP7IQY", "_private_key": null, "_public_key": "", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "date_created": "2016-11-27T08:11:46.428Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 91, "fields": {"name": "Joan Wood", "username": "janet", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRvbmVjIg.ETQR821NXkrnq13LeE4BygCe_fvaFDJggsQ1ghFFfNU", "_private_key": null, "_public_key": "", "comment": "Aliquam sit amet diam in magna bibendum imperdiet.", "date_created": "2016-11-27T08:11:46.430Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 92, "fields": {"name": "Deborah Garcia", "username": "jacqueline", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxpYmVybyI.JSOBTsKXE5mrplDkrXESWTg_SWw6LjpAeHVtzE5__3o", "_private_key": null, "_public_key": "", "comment": "Ut at dolor quis odio consequat varius.", "date_created": "2016-11-27T08:11:46.432Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 93, "fields": {"name": "Shirley Payne", "username": "amy", "_password": "eyJhbGciOiJIUzI1NiJ9.InBoYXNlbGx1cyI.Zn-tLzwjTOOALDdNqorcCv8dpUlJWwDa8PhPqRVfR7s", "_private_key": null, "_public_key": "", "comment": "Nulla suscipit ligula in lacus.", "date_created": "2016-11-27T08:11:46.434Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 94, "fields": {"name": "Beverly Robinson", "username": "brenda", "_password": "eyJhbGciOiJIUzI1NiJ9.ImN1cmFiaXR1ciI.2ljW1YM6ByuGTBHXIP4tXMSyLF3MjpjpSrVJ0VNGFNY", "_private_key": null, "_public_key": "", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "date_created": "2016-11-27T08:11:46.438Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 95, "fields": {"name": "Michelle Riley", "username": "cynthia", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "_private_key": null, "_public_key": "", "comment": "Suspendisse potenti.", "date_created": "2016-11-27T08:11:46.440Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 96, "fields": {"name": "Catherine Austin", "username": "theresa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFudGUi.MEBUyQoLV79tCcbpomj9Q6JdrivWra1ZLsj5UvGmRNg", "_private_key": null, "_public_key": "", "comment": "Praesent id massa id nisl venenatis lacinia.", "date_created": "2016-11-27T08:11:46.442Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 97, "fields": {"name": "Carol Howell", "username": "tina", "_password": "eyJhbGciOiJIUzI1NiJ9.InZpdGFlIg.hgeyUub3irVAJMeHmqEr9yZ7bLM1VSZtwTsRMf3sPoI", "_private_key": null, "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "date_created": "2016-11-27T08:11:46.445Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 98, "fields": {"name": "Bonnie Gray", "username": "amy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF0Ig.KKCMSzsOJLvrGcheEd9SDxRwZhts01BoZ0xyuxHx4Y0", "_private_key": null, "_public_key": "", "comment": "Nulla ut erat id mauris vulputate elementum.", "date_created": "2016-11-27T08:11:46.448Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 99, "fields": {"name": "Elizabeth Fuller", "username": "sharon", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVsZW1lbnR1bSI.VjtnnN56wvXKPow-CFfs9h8bQk7BgGHfga7eFM8Qy_w", "_private_key": null, "_public_key": "", "comment": "Sed vel enim sit amet nunc viverra dapibus.", "date_created": "2016-11-27T08:11:46.450Z", "created_by": "Fake"}}, {"model": "assets.systemuser", "pk": 1, "fields": {"name": "Judy Green", "username": "rose", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbW1vZG8i.2EWG0VrUAKgp7OLpYSSLLvFaUEKcWXUKRC8YzumBkZA", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.452Z", "created_by": "Fake", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem."}}, {"model": "assets.systemuser", "pk": 2, "fields": {"name": "Jacqueline Perkins", "username": "julie", "_password": "eyJhbGciOiJIUzI1NiJ9.InV0Ig.lmRSuoHi4jv9YOiKOSfPjnCwSvHOnUh0UQcZXnEWZzo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.454Z", "created_by": "Fake", "comment": "Cras in purus eu magna vulputate luctus."}}, {"model": "assets.systemuser", "pk": 3, "fields": {"name": "Mary Kelley", "username": "carolyn", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1ldHVzIg.YtPHlU3XHnhjfj2rsVVxVzOZTx_u-Jd2wWJJMarQvls", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.456Z", "created_by": "Fake", "comment": "Mauris sit amet eros."}}, {"model": "assets.systemuser", "pk": 4, "fields": {"name": "Carol Collins", "username": "frances", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlZGUi.VNfxhauAGiZelQ34CO0YMVbRtgnIiH5Z-vY1jjYXhWA", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.458Z", "created_by": "Fake", "comment": "Aliquam non mauris."}}, {"model": "assets.systemuser", "pk": 5, "fields": {"name": "Ann Reyes", "username": "pamela", "_password": "eyJhbGciOiJIUzI1NiJ9.ImltcGVyZGlldCI._XQV1N-Rnln6cTJCYdC29156Dpw77ZWlw3qvZlLQ0zY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.459Z", "created_by": "Fake", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante."}}, {"model": "assets.systemuser", "pk": 6, "fields": {"name": "Carolyn Jacobs", "username": "joyce", "_password": "eyJhbGciOiJIUzI1NiJ9.InRlbXBvciI.ShxIU3cVTgV-zoa58-W_tf_T7HrZ3eYhJ4kg4fHtyIM", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.461Z", "created_by": "Fake", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus."}}, {"model": "assets.systemuser", "pk": 7, "fields": {"name": "Lois Hunter", "username": "carolyn", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnNlY3RldHVlciI.TzWrjty_1MomQ90WvTAEYz3Ypaemo4ROSK2xWJjBEbc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.463Z", "created_by": "Fake", "comment": "Mauris lacinia sapien quis libero."}}, {"model": "assets.systemuser", "pk": 8, "fields": {"name": "Judy Brown", "username": "ann", "_password": "eyJhbGciOiJIUzI1NiJ9.InByYWVzZW50Ig.wpw9M66GI_YQwNBZmSHBmG2W_92MvQzak4XZHDk7T4c", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.464Z", "created_by": "Fake", "comment": "Nam tristique tortor eu pede."}}, {"model": "assets.systemuser", "pk": 9, "fields": {"name": "Ruth Morrison", "username": "frances", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbmd1ZSI.ZhepxP8sxBRKPXnwzbjVSMw55yeF3Ha3WBaajS2I78s", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.466Z", "created_by": "Fake", "comment": "Phasellus sit amet erat."}}, {"model": "assets.systemuser", "pk": 10, "fields": {"name": "Ruby Harper", "username": "norma", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlZCI.8x8y146cvv6phwCp2Q53l_zeUmW1oZkRrbMZG3kbs3w", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.467Z", "created_by": "Fake", "comment": "Nam tristique tortor eu pede."}}, {"model": "assets.systemuser", "pk": 11, "fields": {"name": "Ann Rivera", "username": "maria", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9yY2ki.-H3gNP0GV0UZFR_MqKCCWMiaRDBQRRkfHxX2uojMk74", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.470Z", "created_by": "Fake", "comment": "Suspendisse potenti."}}, {"model": "assets.systemuser", "pk": 12, "fields": {"name": "Maria Boyd", "username": "sharon", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxpYmVybyI.JSOBTsKXE5mrplDkrXESWTg_SWw6LjpAeHVtzE5__3o", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.472Z", "created_by": "Fake", "comment": "Proin risus."}}, {"model": "assets.systemuser", "pk": 13, "fields": {"name": "Janice Alexander", "username": "theresa", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1YW0i.jyCCTLkqnAmQ1fjCgxcCdDDxYQhwb20VCeJO2dN0I-s", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.474Z", "created_by": "Fake", "comment": "In eleifend quam a odio."}}, {"model": "assets.systemuser", "pk": 14, "fields": {"name": "Barbara Gonzales", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImJsYW5kaXQi.ib6BRTHTJx8JP6SbdGdZc1_HRSsZHp9wj-FC4vN41ic", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.476Z", "created_by": "Fake", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros."}}, {"model": "assets.systemuser", "pk": 15, "fields": {"name": "Doris Sanders", "username": "carolyn", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hdXJpcyI.jcR8xjLt9WrET56Nes7q2CdkHYJAWb7Y2d--saQSumY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.478Z", "created_by": "Fake", "comment": "Nulla facilisi."}}, {"model": "assets.systemuser", "pk": 16, "fields": {"name": "Paula Hill", "username": "judy", "_password": "eyJhbGciOiJIUzI1NiJ9.InVybmEi.-R5jFyw4cZP7PaMBzGG2dlnRQj0rpscFmJwAwJ6zLhY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.480Z", "created_by": "Fake", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus."}}, {"model": "assets.systemuser", "pk": 17, "fields": {"name": "Rose Ferguson", "username": "mary", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2VzIg.7CaOCTzCJiIrdVZn5wu5ObQCcCWGmdmgQLjfJvP7IQY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.482Z", "created_by": "Fake", "comment": "Duis consequat dui nec nisi volutpat eleifend."}}, {"model": "assets.systemuser", "pk": 18, "fields": {"name": "Ruby Hicks", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hZ25hIg.n7_lEZwzxnXBn5B4uo3looqSDDSKNqXXAxpJYKKNn7c", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.484Z", "created_by": "Fake", "comment": "Pellentesque eget nunc."}}, {"model": "assets.systemuser", "pk": 19, "fields": {"name": "Kathryn Ramirez", "username": "carol", "_password": "eyJhbGciOiJIUzI1NiJ9.InB1bHZpbmFyIg.VUmNISJr2aidvuyDAGk-BWrcNGXdv12IcHpnH2Kn4dw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.486Z", "created_by": "Fake", "comment": "Nulla ac enim."}}, {"model": "assets.systemuser", "pk": 20, "fields": {"name": "Ann Bishop", "username": "theresa", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pc2wi.bGZH4pJ2wkHxRxfDvzi1ePhYmirT4ibQ-uvsullA4pE", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.488Z", "created_by": "Fake", "comment": "Nunc nisl."}}, {"model": "assets.systemuser", "pk": 21, "fields": {"name": "Melissa Stevens", "username": "kathleen", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5lcXVlIg.llRzdBaLUQqiEtGwr8xvk7hjLPiN2BUFmsxHGYDOUc4", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.491Z", "created_by": "Fake", "comment": "Phasellus in felis."}}, {"model": "assets.systemuser", "pk": 22, "fields": {"name": "Wanda Mendoza", "username": "carolyn", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRhcGlidXMi._Z9XtQyeuJcMgqBgOxIU0eA5-OWdjiBI0ESFrIm9aYs", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.493Z", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est."}}, {"model": "assets.systemuser", "pk": 23, "fields": {"name": "Julia Reed", "username": "katherine", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvdGVudGki.gVzkkI6p2yD2ovfIZrG88LPZYqWz3jIhPNRkRx2okDw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.495Z", "created_by": "Fake", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem."}}, {"model": "assets.systemuser", "pk": 24, "fields": {"name": "Denise Lawson", "username": "angela", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlbSI.q-swGD6R0EwFfj3GvW7opSLXFGPAGIRB_cDeho2N0oc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.498Z", "created_by": "Fake", "comment": "Nam tristique tortor eu pede."}}, {"model": "assets.systemuser", "pk": 25, "fields": {"name": "Doris Fernandez", "username": "christina", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.499Z", "created_by": "Fake", "comment": "Integer ac leo."}}, {"model": "assets.systemuser", "pk": 26, "fields": {"name": "Sandra Elliott", "username": "carol", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyYXQi.DYbnQqa9aMUVtPCk3VMA6RFeUmr4NNrdvTORYTQol2s", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.501Z", "created_by": "Fake", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl."}}, {"model": "assets.systemuser", "pk": 27, "fields": {"name": "Laura Torres", "username": "rebecca", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.504Z", "created_by": "Fake", "comment": "Cras non velit nec nisi vulputate nonummy."}}, {"model": "assets.systemuser", "pk": 28, "fields": {"name": "Rebecca Dunn", "username": "debra", "_password": "eyJhbGciOiJIUzI1NiJ9.InNhcGllbiI.FV7Fd4y2296g887c98VrXRInZMVQulodf4KOSrBCWog", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.506Z", "created_by": "Fake", "comment": "Aenean sit amet justo."}}, {"model": "assets.systemuser", "pk": 29, "fields": {"name": "Mary Johnson", "username": "lori", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFkaXBpc2Npbmci.xA0pKz_H20na1idlwyUjLasNezP4HEJunJ6DQfKy36U", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.510Z", "created_by": "Fake", "comment": "Cras non velit nec nisi vulputate nonummy."}}, {"model": "assets.systemuser", "pk": 30, "fields": {"name": "Pamela Williamson", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnNlcXVhdCI.vLRDCJLof2aVuDu2Ozh-ogfuPPmKCcg9NxF47WcQqig", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.513Z", "created_by": "Fake", "comment": "Mauris ullamcorper purus sit amet nulla."}}, {"model": "assets.systemuser", "pk": 31, "fields": {"name": "Jessica Garza", "username": "bonnie", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbCI.ETImZ-BkJk0sqh2IFBILiQXV2aDn_mEZV3b-qIUDQBo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.515Z", "created_by": "Fake", "comment": "Pellentesque eget nunc."}}, {"model": "assets.systemuser", "pk": 32, "fields": {"name": "Judy Chapman", "username": "beverly", "_password": "eyJhbGciOiJIUzI1NiJ9.InZvbHV0cGF0Ig.F7uCpzruZ4ZGBU3VNWStgVJgh0kXl9bHDicT6aRqSys", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.517Z", "created_by": "Fake", "comment": "Nulla mollis molestie lorem."}}, {"model": "assets.systemuser", "pk": 33, "fields": {"name": "Lois Young", "username": "frances", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.519Z", "created_by": "Fake", "comment": "Maecenas tincidunt lacus at velit."}}, {"model": "assets.systemuser", "pk": 34, "fields": {"name": "Jennifer Turner", "username": "kimberly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxlY3R1cyI.7T1IUgQEmo1rg4yMJ17FiAP48rzB174UhQ0vFbK15QM", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.520Z", "created_by": "Fake", "comment": "Nulla ac enim."}}, {"model": "assets.systemuser", "pk": 35, "fields": {"name": "Amanda Simmons", "username": "jane", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1aXNxdWUi.8Byy0SbrQSV8S0I8M5IEyZN7NyMwHZZqjTKYALmhPvY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.522Z", "created_by": "Fake", "comment": "Suspendisse accumsan tortor quis turpis."}}, {"model": "assets.systemuser", "pk": 36, "fields": {"name": "Jean Evans", "username": "heather", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpY3R1bXN0Ig.owyqiwsx1v5W-7FCwPxXX8ieVl7N7sILLI3SaGMXdn8", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.524Z", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam."}}, {"model": "assets.systemuser", "pk": 37, "fields": {"name": "Rose Simpson", "username": "angela", "_password": "eyJhbGciOiJIUzI1NiJ9.InBsYWNlcmF0Ig.kxIB8lu5D1QiRe0-JXrZGDOGqVX4llGR36rV7ZidWTk", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.526Z", "created_by": "Fake", "comment": "Morbi non quam nec dui luctus rutrum."}}, {"model": "assets.systemuser", "pk": 38, "fields": {"name": "Virginia Palmer", "username": "irene", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.528Z", "created_by": "Fake", "comment": "Vivamus vel nulla eget eros elementum pellentesque."}}, {"model": "assets.systemuser", "pk": 39, "fields": {"name": "Sarah Porter", "username": "cheryl", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlZGUi.VNfxhauAGiZelQ34CO0YMVbRtgnIiH5Z-vY1jjYXhWA", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.529Z", "created_by": "Fake", "comment": "Aenean sit amet justo."}}, {"model": "assets.systemuser", "pk": 40, "fields": {"name": "Catherine Dean", "username": "nancy", "_password": "eyJhbGciOiJIUzI1NiJ9.InNhcGllbiI.FV7Fd4y2296g887c98VrXRInZMVQulodf4KOSrBCWog", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.531Z", "created_by": "Fake", "comment": "Nulla facilisi."}}, {"model": "assets.systemuser", "pk": 41, "fields": {"name": "Bonnie Arnold", "username": "doris", "_password": "eyJhbGciOiJIUzI1NiJ9.InZpdGFlIg.hgeyUub3irVAJMeHmqEr9yZ7bLM1VSZtwTsRMf3sPoI", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.533Z", "created_by": "Fake", "comment": "Duis bibendum."}}, {"model": "assets.systemuser", "pk": 42, "fields": {"name": "Anne Fowler", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.InV0Ig.lmRSuoHi4jv9YOiKOSfPjnCwSvHOnUh0UQcZXnEWZzo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.535Z", "created_by": "Fake", "comment": "Morbi non lectus."}}, {"model": "assets.systemuser", "pk": 43, "fields": {"name": "Ann Morales", "username": "jean", "_password": "eyJhbGciOiJIUzI1NiJ9.ImEi.DmKqiccrpBqvmrAyHjGrnQCuTR7H-csji_L5NxeelbM", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.536Z", "created_by": "Fake", "comment": "Cras in purus eu magna vulputate luctus."}}, {"model": "assets.systemuser", "pk": 44, "fields": {"name": "Rebecca Clark", "username": "margaret", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1pIg.9Z3NScNPiRxvreLu8pDuhMVg8PIHs91k9_ntiUwuBPQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.539Z", "created_by": "Fake", "comment": "Maecenas ut massa quis augue luctus tincidunt."}}, {"model": "assets.systemuser", "pk": 45, "fields": {"name": "Debra Little", "username": "kathy", "_password": "eyJhbGciOiJIUzI1NiJ9.InByb2luIg.j4I43DiE0E2dweGu63szcIkK6MrpiW1Iyr8uolb1eoI", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.541Z", "created_by": "Fake", "comment": "Vivamus vestibulum sagittis sapien."}}, {"model": "assets.systemuser", "pk": 46, "fields": {"name": "Margaret Berry", "username": "julie", "_password": "eyJhbGciOiJIUzI1NiJ9.InJ1dHJ1bSI.e9e4AJVlXCLyu2tkGWKY-NsMt-cO_6iX0iBXXzYWWNs", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.543Z", "created_by": "Fake", "comment": "Quisque id justo sit amet sapien dignissim vestibulum."}}, {"model": "assets.systemuser", "pk": 47, "fields": {"name": "Sandra Griffin", "username": "rebecca", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV1aXNtb2Qi.fazUqmvcQfJEykaTgwrYwtBsFXlGLoXtzke65NugqW0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.545Z", "created_by": "Fake", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue."}}, {"model": "assets.systemuser", "pk": 48, "fields": {"name": "Kelly Wheeler", "username": "cheryl", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5hc2NldHVyIg.38imbSTbL6Rd0WDod36c1lGl1uQQNH_uBtIQflPhFHo", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.547Z", "created_by": "Fake", "comment": "Curabitur in libero ut massa volutpat convallis."}}, {"model": "assets.systemuser", "pk": 49, "fields": {"name": "Catherine Hughes", "username": "laura", "_password": "eyJhbGciOiJIUzI1NiJ9.ImZlbGlzIg.vyOH9A5Es37uybnFippSOXhuSxREYEh-G5qHI8UrDRY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.549Z", "created_by": "Fake", "comment": "Duis bibendum."}}, {"model": "assets.systemuser", "pk": 50, "fields": {"name": "Ruth Reed", "username": "emily", "_password": "eyJhbGciOiJIUzI1NiJ9.InJob25jdXMi.zc47wfesB5fcJ-oBaHagDTV8j2ml3oDL---yZnXFmX4", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.552Z", "created_by": "Fake", "comment": "Nulla tellus."}}, {"model": "assets.systemuser", "pk": 51, "fields": {"name": "Betty Hughes", "username": "lois", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF1Z3VlIg.crP2_jl_o91zD62WaHCevBI_9ScRk6cXhXtPdAVGOYQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.553Z", "created_by": "Fake", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus."}}, {"model": "assets.systemuser", "pk": 52, "fields": {"name": "Norma Johnson", "username": "diane", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbmd1ZSI.ZhepxP8sxBRKPXnwzbjVSMw55yeF3Ha3WBaajS2I78s", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.555Z", "created_by": "Fake", "comment": "Vivamus in felis eu sapien cursus vestibulum."}}, {"model": "assets.systemuser", "pk": 53, "fields": {"name": "Ruth Morris", "username": "donna", "_password": "eyJhbGciOiJIUzI1NiJ9.Imx1Y3R1cyI.HgJMJ_hzKIXE6FmvnIJpfQbY4kKS5qd1c2IJ_GxPdqQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.558Z", "created_by": "Fake", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla."}}, {"model": "assets.systemuser", "pk": 54, "fields": {"name": "Christine Nichols", "username": "lisa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0Ig.3tldwz4uRFsW0n3fXSzg--EVXWaEWcxAmrwA76gZUYA", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.562Z", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.systemuser", "pk": 55, "fields": {"name": "Julie Ortiz", "username": "lillian", "_password": "eyJhbGciOiJIUzI1NiJ9.ImhhYyI.NqFq8iVrrba9qnYT02so-eAKvqMQUN0EXT1JGPAf-EE", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.565Z", "created_by": "Fake", "comment": "Etiam justo."}}, {"model": "assets.systemuser", "pk": 56, "fields": {"name": "Julia Walker", "username": "lois", "_password": "eyJhbGciOiJIUzI1NiJ9.InZpdmVycmEi._5sKpYEDAdzVOMt3SPvcUDflsUZsXSHomn0E3xswexY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.568Z", "created_by": "Fake", "comment": "Nam dui."}}, {"model": "assets.systemuser", "pk": 57, "fields": {"name": "Mildred Washington", "username": "michelle", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2VzIg.7CaOCTzCJiIrdVZn5wu5ObQCcCWGmdmgQLjfJvP7IQY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.572Z", "created_by": "Fake", "comment": "Maecenas tincidunt lacus at velit."}}, {"model": "assets.systemuser", "pk": 58, "fields": {"name": "Janet Lane", "username": "nicole", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlbSI.q-swGD6R0EwFfj3GvW7opSLXFGPAGIRB_cDeho2N0oc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.576Z", "created_by": "Fake", "comment": "Vestibulum ac est lacinia nisi venenatis tristique."}}, {"model": "assets.systemuser", "pk": 59, "fields": {"name": "Anne Peterson", "username": "martha", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2VzIg.7CaOCTzCJiIrdVZn5wu5ObQCcCWGmdmgQLjfJvP7IQY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.580Z", "created_by": "Fake", "comment": "Nunc nisl."}}, {"model": "assets.systemuser", "pk": 60, "fields": {"name": "Annie Berry", "username": "jessica", "_password": "eyJhbGciOiJIUzI1NiJ9.InJ1dHJ1bSI.e9e4AJVlXCLyu2tkGWKY-NsMt-cO_6iX0iBXXzYWWNs", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.583Z", "created_by": "Fake", "comment": "Etiam vel augue."}}, {"model": "assets.systemuser", "pk": 61, "fields": {"name": "Stephanie Hall", "username": "deborah", "_password": "eyJhbGciOiJIUzI1NiJ9.InByaW1pcyI.OAlhMPsCXTLC41MGIrALVio6iqoIwHbHFj-r4Kg4lso", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.586Z", "created_by": "Fake", "comment": "Praesent id massa id nisl venenatis lacinia."}}, {"model": "assets.systemuser", "pk": 62, "fields": {"name": "Robin Fox", "username": "joyce", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.589Z", "created_by": "Fake", "comment": "Morbi porttitor lorem id ligula."}}, {"model": "assets.systemuser", "pk": 63, "fields": {"name": "Brenda Gray", "username": "jessica", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.593Z", "created_by": "Fake", "comment": "Duis consequat dui nec nisi volutpat eleifend."}}, {"model": "assets.systemuser", "pk": 64, "fields": {"name": "Denise Wilson", "username": "laura", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxvcmVtIg.oO5aOD2S0EIsqSl9OTTabrNpCWrG3T8nDgA_4OqrsHE", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.596Z", "created_by": "Fake", "comment": "Morbi a ipsum."}}, {"model": "assets.systemuser", "pk": 65, "fields": {"name": "Joan Freeman", "username": "christine", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5lYyI.LKXtwRVgPGpIFsCWDaqgz1FeQ0uuEIthkh3bbD8r6bI", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.600Z", "created_by": "Fake", "comment": "Praesent blandit."}}, {"model": "assets.systemuser", "pk": 66, "fields": {"name": "Denise Ramos", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNyYXMi.XaZorOzP9Q-tQMUl0F1cFNwEuzAF-xGhi8EEc4rOpeA", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.605Z", "created_by": "Fake", "comment": "Nulla ac enim."}}, {"model": "assets.systemuser", "pk": 67, "fields": {"name": "Louise Morrison", "username": "bonnie", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlbGxlbnRlc3F1ZSI.3yrIK8gbDmlyR-M0hLUJmm7e0Tqrq3F-2hfrwlnJXQ8", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.610Z", "created_by": "Fake", "comment": "Morbi porttitor lorem id ligula."}}, {"model": "assets.systemuser", "pk": 68, "fields": {"name": "Ruby Knight", "username": "pamela", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFudGUi.MEBUyQoLV79tCcbpomj9Q6JdrivWra1ZLsj5UvGmRNg", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.613Z", "created_by": "Fake", "comment": "Nulla nisl."}}, {"model": "assets.systemuser", "pk": 69, "fields": {"name": "Cheryl Martin", "username": "melissa", "_password": "eyJhbGciOiJIUzI1NiJ9.InJ1dHJ1bSI.e9e4AJVlXCLyu2tkGWKY-NsMt-cO_6iX0iBXXzYWWNs", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.617Z", "created_by": "Fake", "comment": "Suspendisse potenti."}}, {"model": "assets.systemuser", "pk": 70, "fields": {"name": "Pamela Lawrence", "username": "marilyn", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.620Z", "created_by": "Fake", "comment": "Fusce consequat."}}, {"model": "assets.systemuser", "pk": 71, "fields": {"name": "Kimberly Griffin", "username": "diane", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.624Z", "created_by": "Fake", "comment": "Duis consequat dui nec nisi volutpat eleifend."}}, {"model": "assets.systemuser", "pk": 72, "fields": {"name": "Karen Alexander", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.InR1cnBpcyI.S-5yYJpmB1hT7Tl1JIPCGsXZ1ATf1_uaCJq1VwSGaPg", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.627Z", "created_by": "Fake", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc."}}, {"model": "assets.systemuser", "pk": 73, "fields": {"name": "Bonnie Carpenter", "username": "nancy", "_password": "eyJhbGciOiJIUzI1NiJ9.InNvbGxpY2l0dWRpbiI.CN0digeVjRpv1GVr5eUkb13I8noDlYUxEQTJIZiwA6U", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.631Z", "created_by": "Fake", "comment": "Sed accumsan felis."}}, {"model": "assets.systemuser", "pk": 74, "fields": {"name": "Jennifer Allen", "username": "rose", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlbSI.q-swGD6R0EwFfj3GvW7opSLXFGPAGIRB_cDeho2N0oc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.634Z", "created_by": "Fake", "comment": "Donec ut mauris eget massa tempor convallis."}}, {"model": "assets.systemuser", "pk": 75, "fields": {"name": "Mildred Reid", "username": "janice", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhbSI.UkSJJgT55ZW1rNFGTaAjz_F8eywms6GmHsQIObRGpxk", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.638Z", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam."}}, {"model": "assets.systemuser", "pk": 76, "fields": {"name": "Bonnie Bowman", "username": "norma", "_password": "eyJhbGciOiJIUzI1NiJ9.ImZlbGlzIg.vyOH9A5Es37uybnFippSOXhuSxREYEh-G5qHI8UrDRY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.641Z", "created_by": "Fake", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem."}}, {"model": "assets.systemuser", "pk": 77, "fields": {"name": "Beverly Ross", "username": "lisa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyYXQi.DYbnQqa9aMUVtPCk3VMA6RFeUmr4NNrdvTORYTQol2s", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.643Z", "created_by": "Fake", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa."}}, {"model": "assets.systemuser", "pk": 78, "fields": {"name": "Rose Watkins", "username": "martha", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnNlcXVhdCI.vLRDCJLof2aVuDu2Ozh-ogfuPPmKCcg9NxF47WcQqig", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.645Z", "created_by": "Fake", "comment": "Maecenas ut massa quis augue luctus tincidunt."}}, {"model": "assets.systemuser", "pk": 79, "fields": {"name": "Evelyn Miller", "username": "joan", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlbSI.q-swGD6R0EwFfj3GvW7opSLXFGPAGIRB_cDeho2N0oc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.647Z", "created_by": "Fake", "comment": "Curabitur gravida nisi at nibh."}}, {"model": "assets.systemuser", "pk": 80, "fields": {"name": "Heather Garrett", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVsZW1lbnR1bSI.VjtnnN56wvXKPow-CFfs9h8bQk7BgGHfga7eFM8Qy_w", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.648Z", "created_by": "Fake", "comment": "In est risus, auctor sed, tristique in, tempus sit amet, sem."}}, {"model": "assets.systemuser", "pk": 81, "fields": {"name": "Margaret Jenkins", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.650Z", "created_by": "Fake", "comment": "Praesent id massa id nisl venenatis lacinia."}}, {"model": "assets.systemuser", "pk": 82, "fields": {"name": "Mary Walker", "username": "beverly", "_password": "eyJhbGciOiJIUzI1NiJ9.InRvcnRvciI.OPG_v82TxcKyRgsGZvElzMJ5qUJRa25waGugUWsE_8U", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.652Z", "created_by": "Fake", "comment": "Praesent id massa id nisl venenatis lacinia."}}, {"model": "assets.systemuser", "pk": 83, "fields": {"name": "Joyce Lawson", "username": "diana", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpcyI.csK88-oI0nE99ZlJR4rK6ERLycOy7RinM2N-ddh1yzA", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.653Z", "created_by": "Fake", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede."}}, {"model": "assets.systemuser", "pk": 84, "fields": {"name": "Joan Stewart", "username": "helen", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsbGFtY29ycGVyIg.Ere4LUljW2jSMrLsaH9VvwQB--Prerb_h0knRRiHMI0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.655Z", "created_by": "Fake", "comment": "Donec vitae nisi."}}, {"model": "assets.systemuser", "pk": 85, "fields": {"name": "Pamela Lopez", "username": "karen", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyb3Mi.u6zpIQpfh7cgPYmscg5N0W9W6cx274KgMtp0pz5_OlY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.657Z", "created_by": "Fake", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh."}}, {"model": "assets.systemuser", "pk": 86, "fields": {"name": "Gloria Riley", "username": "teresa", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlaGljdWxhIg.24RL7x_K4-FG6MSYl7ekdNgShs6FvH2AA0I4gSogttU", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.658Z", "created_by": "Fake", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo."}}, {"model": "assets.systemuser", "pk": 87, "fields": {"name": "Julia Graham", "username": "barbara", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.660Z", "created_by": "Fake", "comment": "Ut at dolor quis odio consequat varius."}}, {"model": "assets.systemuser", "pk": 88, "fields": {"name": "Laura Patterson", "username": "stephanie", "_password": "eyJhbGciOiJIUzI1NiJ9.InByYWVzZW50Ig.wpw9M66GI_YQwNBZmSHBmG2W_92MvQzak4XZHDk7T4c", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.662Z", "created_by": "Fake", "comment": "Curabitur at ipsum ac tellus semper interdum."}}, {"model": "assets.systemuser", "pk": 89, "fields": {"name": "Michelle Richards", "username": "teresa", "_password": "eyJhbGciOiJIUzI1NiJ9.InByZXRpdW0i.i1jTJ_roLe3P5o3qAjQ2gysEclX-UFZIuAT4IPM6fgY", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.663Z", "created_by": "Fake", "comment": "Aliquam erat volutpat."}}, {"model": "assets.systemuser", "pk": 90, "fields": {"name": "Margaret Ray", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.665Z", "created_by": "Fake", "comment": "Suspendisse ornare consequat lectus."}}, {"model": "assets.systemuser", "pk": 91, "fields": {"name": "Beverly Gonzalez", "username": "irene", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF0Ig.KKCMSzsOJLvrGcheEd9SDxRwZhts01BoZ0xyuxHx4Y0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.667Z", "created_by": "Fake", "comment": "Proin risus."}}, {"model": "assets.systemuser", "pk": 92, "fields": {"name": "Joan Stanley", "username": "phyllis", "_password": "eyJhbGciOiJIUzI1NiJ9.Imlwc3VtIg.rZpQHFzRecdHsQN3Et2YmLCm6zfPo_XFOeE-vz-CLe0", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.668Z", "created_by": "Fake", "comment": "Proin interdum mauris non ligula pellentesque ultrices."}}, {"model": "assets.systemuser", "pk": 93, "fields": {"name": "Evelyn Gilbert", "username": "denise", "_password": "eyJhbGciOiJIUzI1NiJ9.ImludGVnZXIi.-DezhdjAfQrm0D1_8467SoZi8I8csCvrksTVQm05pV8", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.670Z", "created_by": "Fake", "comment": "Suspendisse accumsan tortor quis turpis."}}, {"model": "assets.systemuser", "pk": 94, "fields": {"name": "Doris Burton", "username": "donna", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxlbyI.qTN86wuszuz1DJYzlN4xnIOKk4BnSDGx-SrJn18aLxE", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.672Z", "created_by": "Fake", "comment": "Quisque ut erat."}}, {"model": "assets.systemuser", "pk": 95, "fields": {"name": "Brenda Austin", "username": "pamela", "_password": "eyJhbGciOiJIUzI1NiJ9.Imx1Y3R1cyI.HgJMJ_hzKIXE6FmvnIJpfQbY4kKS5qd1c2IJ_GxPdqQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.675Z", "created_by": "Fake", "comment": "Phasellus id sapien in sapien iaculis congue."}}, {"model": "assets.systemuser", "pk": 96, "fields": {"name": "Marilyn Foster", "username": "emily", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjIg.m7atEKEFx68VZmM2clat-RyHmCQmR0lrKJ2VrzecInw", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.678Z", "created_by": "Fake", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl."}}, {"model": "assets.systemuser", "pk": 97, "fields": {"name": "Theresa Lane", "username": "karen", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0Ig.3tldwz4uRFsW0n3fXSzg--EVXWaEWcxAmrwA76gZUYA", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.679Z", "created_by": "Fake", "comment": "Nam dui."}}, {"model": "assets.systemuser", "pk": 98, "fields": {"name": "Melissa Rose", "username": "kimberly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0Ig.3tldwz4uRFsW0n3fXSzg--EVXWaEWcxAmrwA76gZUYA", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.681Z", "created_by": "Fake", "comment": "Etiam vel augue."}}, {"model": "assets.systemuser", "pk": 99, "fields": {"name": "Barbara Palmer", "username": "karen", "_password": "eyJhbGciOiJIUzI1NiJ9.InRvcnRvciI.OPG_v82TxcKyRgsGZvElzMJ5qUJRa25waGugUWsE_8U", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.683Z", "created_by": "Fake", "comment": "Etiam justo."}}, {"model": "assets.systemuser", "pk": 100, "fields": {"name": "Helen Stewart", "username": "donna", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxlY3R1cyI.7T1IUgQEmo1rg4yMJ17FiAP48rzB174UhQ0vFbK15QM", "protocol": "ssh", "_private_key": "", "_public_key": "", "as_default": false, "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2016-11-27T08:11:46.685Z", "created_by": "Fake", "comment": "Integer ac neque."}}, {"model": "assets.assetgroup", "pk": 1, "fields": {"name": "Default", "created_by": "", "date_created": "2016-11-25T06:50:28.627Z", "comment": "Default asset group", "system_users": []}}, {"model": "assets.assetgroup", "pk": 2, "fields": {"name": "Sandra Morgan", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.894Z", "comment": "Suspendisse accumsan tortor quis turpis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 3, "fields": {"name": "Theresa Banks", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.895Z", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 4, "fields": {"name": "Joan Armstrong", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.896Z", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 5, "fields": {"name": "Wanda Watson", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.898Z", "comment": "Vivamus tortor.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 6, "fields": {"name": "Sharon Moreno", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.899Z", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 7, "fields": {"name": "Cynthia Garza", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.900Z", "comment": "Donec semper sapien a libero.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 8, "fields": {"name": "Heather Payne", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.901Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 9, "fields": {"name": "Beverly Moreno", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.904Z", "comment": "Integer ac leo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 10, "fields": {"name": "Brenda Cox", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.905Z", "comment": "In est risus, auctor sed, tristique in, tempus sit amet, sem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 11, "fields": {"name": "Joan Morales", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.907Z", "comment": "Nulla mollis molestie lorem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 12, "fields": {"name": "Laura Sanchez", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.909Z", "comment": "Duis aliquam convallis nunc.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 13, "fields": {"name": "Carolyn Vasquez", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.910Z", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 14, "fields": {"name": "Janet Collins", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.912Z", "comment": "Proin at turpis a pede posuere nonummy.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 15, "fields": {"name": "Alice Fox", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.913Z", "comment": "Integer tincidunt ante vel ipsum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 16, "fields": {"name": "Dorothy Howard", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.915Z", "comment": "Nulla suscipit ligula in lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 17, "fields": {"name": "Lisa Sanders", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.916Z", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 18, "fields": {"name": "Brenda Smith", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.918Z", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 19, "fields": {"name": "Phyllis Ferguson", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.920Z", "comment": "Morbi non quam nec dui luctus rutrum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 20, "fields": {"name": "Tammy Burns", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.921Z", "comment": "Fusce posuere felis sed lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 21, "fields": {"name": "Nicole Ward", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.923Z", "comment": "Quisque porta volutpat erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 22, "fields": {"name": "Heather Hayes", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.925Z", "comment": "Suspendisse potenti.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 23, "fields": {"name": "Ruby Scott", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.926Z", "comment": "Donec semper sapien a libero.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 24, "fields": {"name": "Mildred Hill", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.927Z", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 25, "fields": {"name": "Jacqueline Gutierrez", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.929Z", "comment": "Vivamus vestibulum sagittis sapien.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 26, "fields": {"name": "Heather Thompson", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.931Z", "comment": "In eleifend quam a odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 27, "fields": {"name": "Anne Hayes", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.932Z", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 28, "fields": {"name": "Carol Cooper", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.934Z", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 29, "fields": {"name": "Jacqueline Palmer", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.936Z", "comment": "Pellentesque eget nunc.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 30, "fields": {"name": "Doris Robinson", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.937Z", "comment": "Vivamus in felis eu sapien cursus vestibulum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 31, "fields": {"name": "Marie Evans", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.939Z", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 32, "fields": {"name": "Tina Thompson", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.941Z", "comment": "Donec ut dolor.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 33, "fields": {"name": "Jean Myers", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.943Z", "comment": "Etiam faucibus cursus urna.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 34, "fields": {"name": "Pamela Harris", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.946Z", "comment": "In blandit ultrices enim.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 35, "fields": {"name": "Tammy Hawkins", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.948Z", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 36, "fields": {"name": "Helen Phillips", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.949Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 37, "fields": {"name": "Anna Cunningham", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.952Z", "comment": "Nam dui.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 38, "fields": {"name": "Janice Mills", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.955Z", "comment": "In sagittis dui vel nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 39, "fields": {"name": "Melissa Porter", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.957Z", "comment": "Nunc nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 40, "fields": {"name": "Frances Carroll", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.959Z", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 41, "fields": {"name": "Lois Ortiz", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.964Z", "comment": "Etiam pretium iaculis justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 42, "fields": {"name": "Stephanie Gomez", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.966Z", "comment": "Nulla tempus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 43, "fields": {"name": "Doris Jenkins", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.968Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 44, "fields": {"name": "Cheryl Sanchez", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.969Z", "comment": "Praesent id massa id nisl venenatis lacinia.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 45, "fields": {"name": "Tammy White", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.974Z", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 46, "fields": {"name": "Emily Perkins", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.976Z", "comment": "Quisque porta volutpat erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 47, "fields": {"name": "Judy Fuller", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.978Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 48, "fields": {"name": "Julie Gray", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.981Z", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 49, "fields": {"name": "Marilyn Garrett", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.982Z", "comment": "Cras non velit nec nisi vulputate nonummy.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 50, "fields": {"name": "Sara Mcdonald", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.983Z", "comment": "Aenean lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 51, "fields": {"name": "Diane Richards", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.984Z", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 52, "fields": {"name": "Louise Fernandez", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.985Z", "comment": "Proin risus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 53, "fields": {"name": "Gloria Day", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.987Z", "comment": "Nullam molestie nibh in lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 54, "fields": {"name": "Stephanie Snyder", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.988Z", "comment": "Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 55, "fields": {"name": "Betty Fields", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.989Z", "comment": "Phasellus in felis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 56, "fields": {"name": "Nicole Bradley", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.990Z", "comment": "Aliquam non mauris.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 57, "fields": {"name": "Tammy Reyes", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.992Z", "comment": "Phasellus id sapien in sapien iaculis congue.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 58, "fields": {"name": "Gloria Black", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.993Z", "comment": "Vivamus in felis eu sapien cursus vestibulum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 59, "fields": {"name": "Andrea Morales", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.994Z", "comment": "Duis consequat dui nec nisi volutpat eleifend.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 60, "fields": {"name": "Sarah Armstrong", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.996Z", "comment": "Integer a nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 61, "fields": {"name": "Teresa Carr", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.997Z", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 62, "fields": {"name": "Anne Adams", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.998Z", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 63, "fields": {"name": "Jennifer Sanders", "created_by": "Fake", "date_created": "2016-11-27T08:11:45.999Z", "comment": "In eleifend quam a odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 64, "fields": {"name": "Teresa Hudson", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.000Z", "comment": "Phasellus in felis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 65, "fields": {"name": "Nancy Hunter", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.001Z", "comment": "Nullam varius.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 66, "fields": {"name": "Amanda Burns", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.002Z", "comment": "Vestibulum rutrum rutrum neque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 67, "fields": {"name": "Linda Arnold", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.004Z", "comment": "Vestibulum rutrum rutrum neque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 68, "fields": {"name": "Tammy Cooper", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.005Z", "comment": "Aenean auctor gravida sem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 69, "fields": {"name": "Kimberly Peters", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.007Z", "comment": "Duis at velit eu est congue elementum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 70, "fields": {"name": "Mildred Wagner", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.010Z", "comment": "Morbi ut odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 71, "fields": {"name": "Emily Walker", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.012Z", "comment": "Donec semper sapien a libero.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 72, "fields": {"name": "Frances Romero", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.014Z", "comment": "Morbi ut odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 73, "fields": {"name": "Ann Cooper", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.015Z", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 74, "fields": {"name": "Christina Wood", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.016Z", "comment": "Aenean auctor gravida sem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 75, "fields": {"name": "Kelly Knight", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.017Z", "comment": "Vestibulum rutrum rutrum neque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 76, "fields": {"name": "Judith Ferguson", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.019Z", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 77, "fields": {"name": "Christina Thomas", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.020Z", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 78, "fields": {"name": "Lois Lawrence", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.021Z", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 79, "fields": {"name": "Phyllis Nelson", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.023Z", "comment": "Vivamus vestibulum sagittis sapien.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 80, "fields": {"name": "Helen Chavez", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.024Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 81, "fields": {"name": "Angela Dean", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.025Z", "comment": "Integer ac leo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 82, "fields": {"name": "Kathy Stewart", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.026Z", "comment": "Fusce consequat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 83, "fields": {"name": "Lois Carpenter", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.028Z", "comment": "Nulla mollis molestie lorem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 84, "fields": {"name": "Michelle Holmes", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.029Z", "comment": "Aliquam non mauris.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 85, "fields": {"name": "Denise Stanley", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.030Z", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 86, "fields": {"name": "Marie Alexander", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.031Z", "comment": "Curabitur at ipsum ac tellus semper interdum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 87, "fields": {"name": "Jean Burke", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.032Z", "comment": "Aenean fermentum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 88, "fields": {"name": "Teresa Bowman", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.033Z", "comment": "Donec ut dolor.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 89, "fields": {"name": "Elizabeth Griffin", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.034Z", "comment": "Aenean sit amet justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 90, "fields": {"name": "Heather Murray", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.035Z", "comment": "Cras in purus eu magna vulputate luctus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 91, "fields": {"name": "Amanda Gonzales", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.037Z", "comment": "Maecenas rhoncus aliquam lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 92, "fields": {"name": "Beverly West", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.038Z", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 93, "fields": {"name": "Jean Fernandez", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.040Z", "comment": "Duis bibendum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 94, "fields": {"name": "Sharon George", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.042Z", "comment": "Duis aliquam convallis nunc.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 95, "fields": {"name": "Janet Gomez", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.043Z", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 96, "fields": {"name": "Bonnie George", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.045Z", "comment": "Vestibulum rutrum rutrum neque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 97, "fields": {"name": "Andrea Bowman", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.047Z", "comment": "In quis justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 98, "fields": {"name": "Dorothy Knight", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.048Z", "comment": "Morbi porttitor lorem id ligula.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 99, "fields": {"name": "Marilyn Lawson", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.050Z", "comment": "Aenean lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 100, "fields": {"name": "Amy Henderson", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.051Z", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 101, "fields": {"name": "Ruth Harvey", "created_by": "Fake", "date_created": "2016-11-27T08:11:46.053Z", "comment": "In quis justo.", "system_users": []}}, {"model": "assets.asset", "pk": 1, "fields": {"ip": "0.0.0.0", "other_ip": null, "remote_card_ip": null, "hostname": "jane89", "port": 22, "admin_user": 28, "idc": 6, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:46.697Z", "comment": "", "groups": [40, 51], "system_users": [48, 36, 70], "tags": []}}, {"model": "assets.asset", "pk": 2, "fields": {"ip": "1.1.1.1", "other_ip": null, "remote_card_ip": null, "hostname": "judy93", "port": 22, "admin_user": 70, "idc": 92, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:46.776Z", "comment": "", "groups": [24, 59, 22], "system_users": [72, 33, 35], "tags": []}}, {"model": "assets.asset", "pk": 3, "fields": {"ip": "2.2.2.2", "other_ip": null, "remote_card_ip": null, "hostname": "catherine79", "port": 22, "admin_user": 23, "idc": 93, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:46.902Z", "comment": "", "groups": [1, 38, 15], "system_users": [9, 30], "tags": []}}, {"model": "assets.asset", "pk": 4, "fields": {"ip": "3.3.3.3", "other_ip": null, "remote_card_ip": null, "hostname": "ruby87", "port": 22, "admin_user": 21, "idc": 66, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:46.946Z", "comment": "", "groups": [89, 74, 9], "system_users": [12, 58, 28], "tags": []}}, {"model": "assets.asset", "pk": 5, "fields": {"ip": "4.4.4.4", "other_ip": null, "remote_card_ip": null, "hostname": "janet78", "port": 22, "admin_user": 84, "idc": 16, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:46.987Z", "comment": "", "groups": [17, 52, 37], "system_users": [8, 29, 63], "tags": []}}, {"model": "assets.asset", "pk": 6, "fields": {"ip": "5.5.5.5", "other_ip": null, "remote_card_ip": null, "hostname": "wanda68", "port": 22, "admin_user": 32, "idc": 36, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.036Z", "comment": "", "groups": [40, 36, 87], "system_users": [17, 68, 33], "tags": []}}, {"model": "assets.asset", "pk": 7, "fields": {"ip": "6.6.6.6", "other_ip": null, "remote_card_ip": null, "hostname": "lois79", "port": 22, "admin_user": 98, "idc": 55, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.082Z", "comment": "", "groups": [16, 44, 38], "system_users": [56, 67, 75], "tags": []}}, {"model": "assets.asset", "pk": 8, "fields": {"ip": "7.7.7.7", "other_ip": null, "remote_card_ip": null, "hostname": "carol68", "port": 22, "admin_user": 7, "idc": 37, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.125Z", "comment": "", "groups": [80, 38, 70], "system_users": [26, 91, 85], "tags": []}}, {"model": "assets.asset", "pk": 9, "fields": {"ip": "8.8.8.8", "other_ip": null, "remote_card_ip": null, "hostname": "ashley86", "port": 22, "admin_user": 36, "idc": 37, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.171Z", "comment": "", "groups": [66, 28, 98], "system_users": [90, 20, 78], "tags": []}}, {"model": "assets.asset", "pk": 10, "fields": {"ip": "9.9.9.9", "other_ip": null, "remote_card_ip": null, "hostname": "elizabeth87", "port": 22, "admin_user": 12, "idc": 80, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.237Z", "comment": "", "groups": [65, 19, 36], "system_users": [56, 100, 14], "tags": []}}, {"model": "assets.asset", "pk": 11, "fields": {"ip": "10.10.10.10", "other_ip": null, "remote_card_ip": null, "hostname": "paula71", "port": 22, "admin_user": 71, "idc": 97, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.301Z", "comment": "", "groups": [65, 44, 93], "system_users": [42, 22], "tags": []}}, {"model": "assets.asset", "pk": 12, "fields": {"ip": "11.11.11.11", "other_ip": null, "remote_card_ip": null, "hostname": "sarah80", "port": 22, "admin_user": 54, "idc": 30, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.343Z", "comment": "", "groups": [24, 41, 36], "system_users": [15, 4, 79], "tags": []}}, {"model": "assets.asset", "pk": 13, "fields": {"ip": "12.12.12.12", "other_ip": null, "remote_card_ip": null, "hostname": "deborah78", "port": 22, "admin_user": 56, "idc": 46, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.385Z", "comment": "", "groups": [24, 50, 31], "system_users": [82, 60, 93], "tags": []}}, {"model": "assets.asset", "pk": 14, "fields": {"ip": "13.13.13.13", "other_ip": null, "remote_card_ip": null, "hostname": "susan67", "port": 22, "admin_user": 48, "idc": 20, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.426Z", "comment": "", "groups": [1, 58, 67], "system_users": [43, 36, 46], "tags": []}}, {"model": "assets.asset", "pk": 15, "fields": {"ip": "14.14.14.14", "other_ip": null, "remote_card_ip": null, "hostname": "paula84", "port": 22, "admin_user": 56, "idc": 57, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.468Z", "comment": "", "groups": [89, 74, 95], "system_users": [76, 69, 7], "tags": []}}, {"model": "assets.asset", "pk": 16, "fields": {"ip": "15.15.15.15", "other_ip": null, "remote_card_ip": null, "hostname": "teresa82", "port": 22, "admin_user": 62, "idc": 82, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.510Z", "comment": "", "groups": [74, 69, 38], "system_users": [96, 21, 95], "tags": []}}, {"model": "assets.asset", "pk": 17, "fields": {"ip": "16.16.16.16", "other_ip": null, "remote_card_ip": null, "hostname": "anna90", "port": 22, "admin_user": 72, "idc": 64, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.565Z", "comment": "", "groups": [64, 81, 38], "system_users": [24, 73, 99], "tags": []}}, {"model": "assets.asset", "pk": 18, "fields": {"ip": "17.17.17.17", "other_ip": null, "remote_card_ip": null, "hostname": "amanda91", "port": 22, "admin_user": 85, "idc": 23, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.606Z", "comment": "", "groups": [1, 26, 39], "system_users": [91, 4, 86], "tags": []}}, {"model": "assets.asset", "pk": 19, "fields": {"ip": "18.18.18.18", "other_ip": null, "remote_card_ip": null, "hostname": "catherine63", "port": 22, "admin_user": 9, "idc": 39, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.648Z", "comment": "", "groups": [48, 9, 50], "system_users": [12, 69, 55], "tags": []}}, {"model": "assets.asset", "pk": 20, "fields": {"ip": "19.19.19.19", "other_ip": null, "remote_card_ip": null, "hostname": "diane89", "port": 22, "admin_user": 85, "idc": 11, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.691Z", "comment": "", "groups": [17, 66, 7], "system_users": [24, 90, 92], "tags": []}}, {"model": "assets.asset", "pk": 21, "fields": {"ip": "20.20.20.20", "other_ip": null, "remote_card_ip": null, "hostname": "diana83", "port": 22, "admin_user": 7, "idc": 89, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.734Z", "comment": "", "groups": [42, 13, 45], "system_users": [58, 93, 62], "tags": []}}, {"model": "assets.asset", "pk": 22, "fields": {"ip": "21.21.21.21", "other_ip": null, "remote_card_ip": null, "hostname": "brenda80", "port": 22, "admin_user": 41, "idc": 40, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.779Z", "comment": "", "groups": [48, 90, 95], "system_users": [27, 60, 39], "tags": []}}, {"model": "assets.asset", "pk": 23, "fields": {"ip": "22.22.22.22", "other_ip": null, "remote_card_ip": null, "hostname": "tammy85", "port": 22, "admin_user": 54, "idc": 64, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.835Z", "comment": "", "groups": [20, 28, 70], "system_users": [8, 89, 2], "tags": []}}, {"model": "assets.asset", "pk": 24, "fields": {"ip": "23.23.23.23", "other_ip": null, "remote_card_ip": null, "hostname": "dorothy76", "port": 22, "admin_user": 50, "idc": 29, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.886Z", "comment": "", "groups": [49, 28, 14], "system_users": [52, 45, 55], "tags": []}}, {"model": "assets.asset", "pk": 25, "fields": {"ip": "24.24.24.24", "other_ip": null, "remote_card_ip": null, "hostname": "judy69", "port": 22, "admin_user": 36, "idc": 61, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.929Z", "comment": "", "groups": [74, 99, 53], "system_users": [16, 29, 78], "tags": []}}, {"model": "assets.asset", "pk": 26, "fields": {"ip": "25.25.25.25", "other_ip": null, "remote_card_ip": null, "hostname": "jennifer92", "port": 22, "admin_user": 61, "idc": 28, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:47.970Z", "comment": "", "groups": [94, 37, 6], "system_users": [88, 26, 38], "tags": []}}, {"model": "assets.asset", "pk": 27, "fields": {"ip": "26.26.26.26", "other_ip": null, "remote_card_ip": null, "hostname": "helen68", "port": 22, "admin_user": 13, "idc": 25, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.013Z", "comment": "", "groups": [81, 21, 73], "system_users": [17, 3, 21], "tags": []}}, {"model": "assets.asset", "pk": 28, "fields": {"ip": "27.27.27.27", "other_ip": null, "remote_card_ip": null, "hostname": "irene79", "port": 22, "admin_user": 36, "idc": 89, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.058Z", "comment": "", "groups": [52, 20, 78], "system_users": [40, 64, 60], "tags": []}}, {"model": "assets.asset", "pk": 29, "fields": {"ip": "28.28.28.28", "other_ip": null, "remote_card_ip": null, "hostname": "stephanie66", "port": 22, "admin_user": 96, "idc": 73, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.102Z", "comment": "", "groups": [88, 58, 84], "system_users": [80, 96, 86], "tags": []}}, {"model": "assets.asset", "pk": 30, "fields": {"ip": "29.29.29.29", "other_ip": null, "remote_card_ip": null, "hostname": "tammy90", "port": 22, "admin_user": 18, "idc": 65, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.146Z", "comment": "", "groups": [96, 9, 87], "system_users": [80, 57, 4], "tags": []}}, {"model": "assets.asset", "pk": 31, "fields": {"ip": "30.30.30.30", "other_ip": null, "remote_card_ip": null, "hostname": "judith64", "port": 22, "admin_user": 37, "idc": 55, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.189Z", "comment": "", "groups": [42, 69, 70], "system_users": [88, 80, 62], "tags": []}}, {"model": "assets.asset", "pk": 32, "fields": {"ip": "31.31.31.31", "other_ip": null, "remote_card_ip": null, "hostname": "roger79", "port": 22, "admin_user": 39, "idc": 3, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.231Z", "comment": "", "groups": [73, 10, 70], "system_users": [48, 53, 23], "tags": []}}, {"model": "assets.asset", "pk": 33, "fields": {"ip": "32.32.32.32", "other_ip": null, "remote_card_ip": null, "hostname": "lois70", "port": 22, "admin_user": 88, "idc": 20, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.277Z", "comment": "", "groups": [40, 68, 36], "system_users": [65, 70, 17], "tags": []}}, {"model": "assets.asset", "pk": 34, "fields": {"ip": "33.33.33.33", "other_ip": null, "remote_card_ip": null, "hostname": "kathryn89", "port": 22, "admin_user": 80, "idc": 20, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.321Z", "comment": "", "groups": [34, 75, 98], "system_users": [72, 33, 79], "tags": []}}, {"model": "assets.asset", "pk": 35, "fields": {"ip": "34.34.34.34", "other_ip": null, "remote_card_ip": null, "hostname": "rachel66", "port": 22, "admin_user": 61, "idc": 18, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.362Z", "comment": "", "groups": [3, 5, 62], "system_users": [65, 70, 86], "tags": []}}, {"model": "assets.asset", "pk": 36, "fields": {"ip": "35.35.35.35", "other_ip": null, "remote_card_ip": null, "hostname": "donna71", "port": 22, "admin_user": 85, "idc": 44, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.403Z", "comment": "", "groups": [49, 85, 62], "system_users": [50, 67, 7], "tags": []}}, {"model": "assets.asset", "pk": 37, "fields": {"ip": "36.36.36.36", "other_ip": null, "remote_card_ip": null, "hostname": "cynthia84", "port": 22, "admin_user": 96, "idc": 52, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.446Z", "comment": "", "groups": [89, 43, 92], "system_users": [93, 62, 31], "tags": []}}, {"model": "assets.asset", "pk": 38, "fields": {"ip": "37.37.37.37", "other_ip": null, "remote_card_ip": null, "hostname": "diane78", "port": 22, "admin_user": 3, "idc": 45, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.487Z", "comment": "", "groups": [32, 84, 39], "system_users": [1, 75, 65], "tags": []}}, {"model": "assets.asset", "pk": 39, "fields": {"ip": "38.38.38.38", "other_ip": null, "remote_card_ip": null, "hostname": "lisa85", "port": 22, "admin_user": 65, "idc": 85, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.533Z", "comment": "", "groups": [72, 28, 46], "system_users": [19, 59, 70], "tags": []}}, {"model": "assets.asset", "pk": 40, "fields": {"ip": "39.39.39.39", "other_ip": null, "remote_card_ip": null, "hostname": "pamela81", "port": 22, "admin_user": 67, "idc": 10, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.585Z", "comment": "", "groups": [16, 18, 50], "system_users": [25, 42, 94], "tags": []}}, {"model": "assets.asset", "pk": 41, "fields": {"ip": "40.40.40.40", "other_ip": null, "remote_card_ip": null, "hostname": "amanda78", "port": 22, "admin_user": 96, "idc": 20, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.629Z", "comment": "", "groups": [84, 91, 68], "system_users": [16, 73, 26], "tags": []}}, {"model": "assets.asset", "pk": 42, "fields": {"ip": "41.41.41.41", "other_ip": null, "remote_card_ip": null, "hostname": "kathryn74", "port": 22, "admin_user": 80, "idc": 75, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.669Z", "comment": "", "groups": [93, 62, 21], "system_users": [35, 63], "tags": []}}, {"model": "assets.asset", "pk": 43, "fields": {"ip": "42.42.42.42", "other_ip": null, "remote_card_ip": null, "hostname": "kathleen63", "port": 22, "admin_user": 81, "idc": 44, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.711Z", "comment": "", "groups": [28, 68, 93], "system_users": [40, 65, 71], "tags": []}}, {"model": "assets.asset", "pk": 44, "fields": {"ip": "43.43.43.43", "other_ip": null, "remote_card_ip": null, "hostname": "lisa65", "port": 22, "admin_user": 3, "idc": 62, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.752Z", "comment": "", "groups": [25, 59, 101], "system_users": [56, 81, 20], "tags": []}}, {"model": "assets.asset", "pk": 45, "fields": {"ip": "44.44.44.44", "other_ip": null, "remote_card_ip": null, "hostname": "karen94", "port": 22, "admin_user": 46, "idc": 49, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.791Z", "comment": "", "groups": [66, 86, 46], "system_users": [18, 11, 15], "tags": []}}, {"model": "assets.asset", "pk": 46, "fields": {"ip": "45.45.45.45", "other_ip": null, "remote_card_ip": null, "hostname": "carolyn79", "port": 22, "admin_user": 50, "idc": 18, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.830Z", "comment": "", "groups": [59, 76, 95], "system_users": [4, 59, 28], "tags": []}}, {"model": "assets.asset", "pk": 47, "fields": {"ip": "46.46.46.46", "other_ip": null, "remote_card_ip": null, "hostname": "lori76", "port": 22, "admin_user": 25, "idc": 46, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.870Z", "comment": "", "groups": [41, 66, 31], "system_users": [56, 99, 29], "tags": []}}, {"model": "assets.asset", "pk": 48, "fields": {"ip": "47.47.47.47", "other_ip": null, "remote_card_ip": null, "hostname": "christine63", "port": 22, "admin_user": 46, "idc": 22, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.911Z", "comment": "", "groups": [92, 5, 30], "system_users": [100, 69, 71], "tags": []}}, {"model": "assets.asset", "pk": 49, "fields": {"ip": "48.48.48.48", "other_ip": null, "remote_card_ip": null, "hostname": "robin72", "port": 22, "admin_user": 24, "idc": 25, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.951Z", "comment": "", "groups": [56, 40, 3], "system_users": [83, 38, 86], "tags": []}}, {"model": "assets.asset", "pk": 50, "fields": {"ip": "49.49.49.49", "other_ip": null, "remote_card_ip": null, "hostname": "norma73", "port": 22, "admin_user": 74, "idc": 83, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:48.991Z", "comment": "", "groups": [1, 57, 25], "system_users": [64, 65, 7], "tags": []}}, {"model": "assets.asset", "pk": 51, "fields": {"ip": "50.50.50.50", "other_ip": null, "remote_card_ip": null, "hostname": "paula92", "port": 22, "admin_user": 73, "idc": 100, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.031Z", "comment": "", "groups": [49, 51, 77], "system_users": [45, 70, 23], "tags": []}}, {"model": "assets.asset", "pk": 52, "fields": {"ip": "51.51.51.51", "other_ip": null, "remote_card_ip": null, "hostname": "susan74", "port": 22, "admin_user": 26, "idc": 63, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.071Z", "comment": "", "groups": [34, 43, 22], "system_users": [9, 4, 22], "tags": []}}, {"model": "assets.asset", "pk": 53, "fields": {"ip": "52.52.52.52", "other_ip": null, "remote_card_ip": null, "hostname": "virginia74", "port": 22, "admin_user": 27, "idc": 89, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.122Z", "comment": "", "groups": [64, 40, 19], "system_users": [73, 90, 93], "tags": []}}, {"model": "assets.asset", "pk": 54, "fields": {"ip": "53.53.53.53", "other_ip": null, "remote_card_ip": null, "hostname": "ashley70", "port": 22, "admin_user": 42, "idc": 25, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.161Z", "comment": "", "groups": [88, 33, 1], "system_users": [24, 52, 14], "tags": []}}, {"model": "assets.asset", "pk": 55, "fields": {"ip": "54.54.54.54", "other_ip": null, "remote_card_ip": null, "hostname": "jean91", "port": 22, "admin_user": 66, "idc": 32, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.203Z", "comment": "", "groups": [40, 17, 85], "system_users": [25, 50, 34], "tags": []}}, {"model": "assets.asset", "pk": 56, "fields": {"ip": "55.55.55.55", "other_ip": null, "remote_card_ip": null, "hostname": "phyllis70", "port": 22, "admin_user": 5, "idc": 8, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.243Z", "comment": "", "groups": [24, 52, 31], "system_users": [29, 38, 79], "tags": []}}, {"model": "assets.asset", "pk": 57, "fields": {"ip": "56.56.56.56", "other_ip": null, "remote_card_ip": null, "hostname": "rose68", "port": 22, "admin_user": 70, "idc": 58, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.282Z", "comment": "", "groups": [65, 66, 47], "system_users": [17, 62, 94], "tags": []}}, {"model": "assets.asset", "pk": 58, "fields": {"ip": "57.57.57.57", "other_ip": null, "remote_card_ip": null, "hostname": "helen76", "port": 22, "admin_user": 66, "idc": 41, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.321Z", "comment": "", "groups": [67, 78, 71], "system_users": [48, 40, 77], "tags": []}}, {"model": "assets.asset", "pk": 59, "fields": {"ip": "58.58.58.58", "other_ip": null, "remote_card_ip": null, "hostname": "anna74", "port": 22, "admin_user": 52, "idc": 99, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.361Z", "comment": "", "groups": [40, 85, 61], "system_users": [42, 21, 7], "tags": []}}, {"model": "assets.asset", "pk": 60, "fields": {"ip": "59.59.59.59", "other_ip": null, "remote_card_ip": null, "hostname": "bonnie82", "port": 22, "admin_user": 56, "idc": 20, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.401Z", "comment": "", "groups": [72, 25, 27], "system_users": [58, 18, 22], "tags": []}}, {"model": "assets.asset", "pk": 61, "fields": {"ip": "60.60.60.60", "other_ip": null, "remote_card_ip": null, "hostname": "bonnie72", "port": 22, "admin_user": 26, "idc": 83, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.442Z", "comment": "", "groups": [82, 85, 30], "system_users": [16, 2, 3], "tags": []}}, {"model": "assets.asset", "pk": 62, "fields": {"ip": "61.61.61.61", "other_ip": null, "remote_card_ip": null, "hostname": "sarah71", "port": 22, "admin_user": 93, "idc": 23, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.483Z", "comment": "", "groups": [9, 59, 55], "system_users": [91, 21, 45], "tags": []}}, {"model": "assets.asset", "pk": 63, "fields": {"ip": "62.62.62.62", "other_ip": null, "remote_card_ip": null, "hostname": "carol72", "port": 22, "admin_user": 44, "idc": 77, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.522Z", "comment": "", "groups": [65, 18, 71], "system_users": [26, 50, 30], "tags": []}}, {"model": "assets.asset", "pk": 64, "fields": {"ip": "63.63.63.63", "other_ip": null, "remote_card_ip": null, "hostname": "janice90", "port": 22, "admin_user": 80, "idc": 15, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.563Z", "comment": "", "groups": [4, 100, 25], "system_users": [91, 51, 60], "tags": []}}, {"model": "assets.asset", "pk": 65, "fields": {"ip": "64.64.64.64", "other_ip": null, "remote_card_ip": null, "hostname": "frances63", "port": 22, "admin_user": 9, "idc": 36, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.615Z", "comment": "", "groups": [72, 60, 77], "system_users": [18, 53, 5], "tags": []}}, {"model": "assets.asset", "pk": 66, "fields": {"ip": "65.65.65.65", "other_ip": null, "remote_card_ip": null, "hostname": "nancy73", "port": 22, "admin_user": 24, "idc": 100, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.654Z", "comment": "", "groups": [64, 72, 78], "system_users": [90, 35, 79], "tags": []}}, {"model": "assets.asset", "pk": 67, "fields": {"ip": "66.66.66.66", "other_ip": null, "remote_card_ip": null, "hostname": "virginia88", "port": 22, "admin_user": 99, "idc": 8, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.694Z", "comment": "", "groups": [32, 11, 38], "system_users": [35, 19, 4], "tags": []}}, {"model": "assets.asset", "pk": 68, "fields": {"ip": "67.67.67.67", "other_ip": null, "remote_card_ip": null, "hostname": "deborah75", "port": 22, "admin_user": 81, "idc": 52, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.736Z", "comment": "", "groups": [8, 72, 9], "system_users": [72, 79, 63], "tags": []}}, {"model": "assets.asset", "pk": 69, "fields": {"ip": "68.68.68.68", "other_ip": null, "remote_card_ip": null, "hostname": "kathy79", "port": 22, "admin_user": 50, "idc": 40, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.777Z", "comment": "", "groups": [96, 49, 36], "system_users": [91, 5, 55], "tags": []}}, {"model": "assets.asset", "pk": 70, "fields": {"ip": "69.69.69.69", "other_ip": null, "remote_card_ip": null, "hostname": "amy84", "port": 22, "admin_user": 1, "idc": 15, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.824Z", "comment": "", "groups": [64, 26, 3], "system_users": [80, 32, 34], "tags": []}}, {"model": "assets.asset", "pk": 71, "fields": {"ip": "70.70.70.70", "other_ip": null, "remote_card_ip": null, "hostname": "sara73", "port": 22, "admin_user": 59, "idc": 97, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.864Z", "comment": "", "groups": [60, 20, 62], "system_users": [57, 3, 15], "tags": []}}, {"model": "assets.asset", "pk": 72, "fields": {"ip": "71.71.71.71", "other_ip": null, "remote_card_ip": null, "hostname": "cheryl83", "port": 22, "admin_user": 2, "idc": 100, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.905Z", "comment": "", "groups": [1, 74, 99], "system_users": [41, 45, 39], "tags": []}}, {"model": "assets.asset", "pk": 73, "fields": {"ip": "72.72.72.72", "other_ip": null, "remote_card_ip": null, "hostname": "lisa78", "port": 22, "admin_user": 90, "idc": 80, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.945Z", "comment": "", "groups": [97, 91, 53], "system_users": [24, 12, 68], "tags": []}}, {"model": "assets.asset", "pk": 74, "fields": {"ip": "73.73.73.73", "other_ip": null, "remote_card_ip": null, "hostname": "anne81", "port": 22, "admin_user": 84, "idc": 70, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:49.985Z", "comment": "", "groups": [26, 101, 39], "system_users": [57, 66, 95], "tags": []}}, {"model": "assets.asset", "pk": 75, "fields": {"ip": "74.74.74.74", "other_ip": null, "remote_card_ip": null, "hostname": "joan84", "port": 22, "admin_user": 26, "idc": 88, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.026Z", "comment": "", "groups": [48, 61, 39], "system_users": [16, 34, 92], "tags": []}}, {"model": "assets.asset", "pk": 76, "fields": {"ip": "75.75.75.75", "other_ip": null, "remote_card_ip": null, "hostname": "jennifer89", "port": 22, "admin_user": 78, "idc": 73, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.067Z", "comment": "", "groups": [72, 17, 5], "system_users": [11, 86, 7], "tags": []}}, {"model": "assets.asset", "pk": 77, "fields": {"ip": "76.76.76.76", "other_ip": null, "remote_card_ip": null, "hostname": "robin90", "port": 22, "admin_user": 74, "idc": 50, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.112Z", "comment": "", "groups": [83, 35, 30], "system_users": [26, 52, 58], "tags": []}}, {"model": "assets.asset", "pk": 78, "fields": {"ip": "77.77.77.77", "other_ip": null, "remote_card_ip": null, "hostname": "amanda92", "port": 22, "admin_user": 26, "idc": 70, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.151Z", "comment": "", "groups": [59, 84, 15], "system_users": [80, 27, 14], "tags": []}}, {"model": "assets.asset", "pk": 79, "fields": {"ip": "78.78.78.78", "other_ip": null, "remote_card_ip": null, "hostname": "sara87", "port": 22, "admin_user": 25, "idc": 46, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.191Z", "comment": "", "groups": [34, 5, 31], "system_users": [18, 29, 23], "tags": []}}, {"model": "assets.asset", "pk": 80, "fields": {"ip": "79.79.79.79", "other_ip": null, "remote_card_ip": null, "hostname": "ann92", "port": 22, "admin_user": 95, "idc": 23, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.232Z", "comment": "", "groups": [3, 49, 27], "system_users": [56, 57, 39], "tags": []}}, {"model": "assets.asset", "pk": 81, "fields": {"ip": "80.80.80.80", "other_ip": null, "remote_card_ip": null, "hostname": "diane66", "port": 22, "admin_user": 67, "idc": 4, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.271Z", "comment": "", "groups": [59, 77, 7], "system_users": [2, 27, 78], "tags": []}}, {"model": "assets.asset", "pk": 82, "fields": {"ip": "81.81.81.81", "other_ip": null, "remote_card_ip": null, "hostname": "lillian75", "port": 22, "admin_user": 52, "idc": 52, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.322Z", "comment": "", "groups": [68, 70, 7], "system_users": [25, 82, 76], "tags": []}}, {"model": "assets.asset", "pk": 83, "fields": {"ip": "82.82.82.82", "other_ip": null, "remote_card_ip": null, "hostname": "katherine65", "port": 22, "admin_user": 40, "idc": 60, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.362Z", "comment": "", "groups": [49, 99, 7], "system_users": [72, 32, 67], "tags": []}}, {"model": "assets.asset", "pk": 84, "fields": {"ip": "83.83.83.83", "other_ip": null, "remote_card_ip": null, "hostname": "cheryl93", "port": 22, "admin_user": 40, "idc": 33, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.402Z", "comment": "", "groups": [100, 5, 63], "system_users": [49, 35, 7], "tags": []}}, {"model": "assets.asset", "pk": 85, "fields": {"ip": "84.84.84.84", "other_ip": null, "remote_card_ip": null, "hostname": "angela83", "port": 22, "admin_user": 94, "idc": 83, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.445Z", "comment": "", "groups": [73, 82, 44], "system_users": [19, 86, 39], "tags": []}}, {"model": "assets.asset", "pk": 86, "fields": {"ip": "85.85.85.85", "other_ip": null, "remote_card_ip": null, "hostname": "annie81", "port": 22, "admin_user": 64, "idc": 7, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.484Z", "comment": "", "groups": [92, 20, 100], "system_users": [10, 77, 38], "tags": []}}, {"model": "assets.asset", "pk": 87, "fields": {"ip": "86.86.86.86", "other_ip": null, "remote_card_ip": null, "hostname": "kathryn91", "port": 22, "admin_user": 43, "idc": 86, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.528Z", "comment": "", "groups": [49, 53, 63], "system_users": [49, 46, 79], "tags": []}}, {"model": "assets.asset", "pk": 88, "fields": {"ip": "87.87.87.87", "other_ip": null, "remote_card_ip": null, "hostname": "helen78", "port": 22, "admin_user": 78, "idc": 45, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.643Z", "comment": "", "groups": [65, 66, 14], "system_users": [72, 33, 63], "tags": []}}, {"model": "assets.asset", "pk": 89, "fields": {"ip": "88.88.88.88", "other_ip": null, "remote_card_ip": null, "hostname": "lois65", "port": 22, "admin_user": 83, "idc": 80, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.789Z", "comment": "", "groups": [72, 89, 34], "system_users": [37, 94, 23], "tags": []}}, {"model": "assets.asset", "pk": 90, "fields": {"ip": "89.89.89.89", "other_ip": null, "remote_card_ip": null, "hostname": "nicole82", "port": 22, "admin_user": 47, "idc": 52, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.855Z", "comment": "", "groups": [89, 68, 77], "system_users": [33, 21, 71], "tags": []}}, {"model": "assets.asset", "pk": 91, "fields": {"ip": "90.90.90.90", "other_ip": null, "remote_card_ip": null, "hostname": "norma83", "port": 22, "admin_user": 97, "idc": 6, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.920Z", "comment": "", "groups": [90, 100, 29], "system_users": [24, 6, 70], "tags": []}}, {"model": "assets.asset", "pk": 92, "fields": {"ip": "91.91.91.91", "other_ip": null, "remote_card_ip": null, "hostname": "ruby85", "port": 22, "admin_user": 98, "idc": 88, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:50.986Z", "comment": "", "groups": [34, 91, 23], "system_users": [16, 24, 4], "tags": []}}, {"model": "assets.asset", "pk": 93, "fields": {"ip": "92.92.92.92", "other_ip": null, "remote_card_ip": null, "hostname": "laura94", "port": 22, "admin_user": 19, "idc": 24, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:51.053Z", "comment": "", "groups": [46, 29, 30], "system_users": [32, 59, 4], "tags": []}}, {"model": "assets.asset", "pk": 94, "fields": {"ip": "93.93.93.93", "other_ip": null, "remote_card_ip": null, "hostname": "julie78", "port": 22, "admin_user": 62, "idc": 18, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:51.118Z", "comment": "", "groups": [42, 51, 39], "system_users": [40, 32, 53], "tags": []}}, {"model": "assets.asset", "pk": 95, "fields": {"ip": "94.94.94.94", "other_ip": null, "remote_card_ip": null, "hostname": "sara80", "port": 22, "admin_user": 61, "idc": 95, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:51.186Z", "comment": "", "groups": [65, 51, 37], "system_users": [56, 17, 33], "tags": []}}, {"model": "assets.asset", "pk": 96, "fields": {"ip": "95.95.95.95", "other_ip": null, "remote_card_ip": null, "hostname": "wanda69", "port": 22, "admin_user": 89, "idc": 6, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:51.252Z", "comment": "", "groups": [101, 39], "system_users": [16, 41, 39], "tags": []}}, {"model": "assets.asset", "pk": 97, "fields": {"ip": "96.96.96.96", "other_ip": null, "remote_card_ip": null, "hostname": "lillian74", "port": 22, "admin_user": 46, "idc": 91, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:51.317Z", "comment": "", "groups": [56, 96, 93], "system_users": [57, 34, 47], "tags": []}}, {"model": "assets.asset", "pk": 98, "fields": {"ip": "97.97.97.97", "other_ip": null, "remote_card_ip": null, "hostname": "anne84", "port": 22, "admin_user": 95, "idc": 100, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:51.383Z", "comment": "", "groups": [41, 11, 25], "system_users": [64, 3, 76], "tags": []}}, {"model": "assets.asset", "pk": 99, "fields": {"ip": "98.98.98.98", "other_ip": null, "remote_card_ip": null, "hostname": "andrea81", "port": 22, "admin_user": 12, "idc": 83, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:51.449Z", "comment": "", "groups": [16, 41, 34], "system_users": [58, 66, 47], "tags": []}}, {"model": "assets.asset", "pk": 100, "fields": {"ip": "99.99.99.99", "other_ip": null, "remote_card_ip": null, "hostname": "tina93", "port": 22, "admin_user": 30, "idc": 19, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2016-11-27T08:11:51.514Z", "comment": "", "groups": [50, 59, 29], "system_users": [8, 35, 59], "tags": []}}, {"model": "audits.loginlog", "pk": 1, "fields": {"username": "admin", "name": "Administrator", "login_type": "W", "terminal": "", "login_ip": "127.0.0.1", "login_city": "\u672a\u5206\u914d\u6216\u8005\u5185\u7f51IP", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.98 Safari/537.36", "date_login": "2016-11-25T09:30:48.043Z"}}, {"model": "captcha.captchastore", "pk": 1, "fields": {"challenge": "MOBB", "response": "mobb", "hashkey": "635aefda4b277d038d427ab709e3ba2c1dad245e", "expiration": "2016-11-25T09:35:27.954Z"}}, {"model": "sessions.session", "pk": "wwllqfii7w60p0dq3o5bcrsp6ye08jql", "fields": {"session_data": "YTE3NDM3YzAwNmViYzNjZDAyMTM3M2UyMjJhNDEwZDJiYzU5ZDc2Zjp7Il9hdXRoX3VzZXJfaGFzaCI6IjY4ZWFlZmFjOTAzY2Q4NDRhMGE0NGIwMTcxNjJmOWJmMDIyZDg1MjYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2016-12-09T09:30:42.244Z"}}, {"model": "users.user", "pk": 1, "fields": {"password": "pbkdf2_sha256$30000$RwSpXYAYQGbQ$PADpsQmM+cO5Y/R1CVSx3qNV4EbGIm2k+iMBXUtwvNc=", "last_login": "2016-11-25T09:30:42.003Z", "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T06:50:28.412Z", "username": "admin", "name": "Administrator", "email": "admin@jumpserver.org", "role": "Admin", "avatar": "", "wechat": "", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Administrator is the super user of system", "is_first_login": false, "date_expired": "2086-11-08T06:50:28.412Z", "created_by": "System", "user_permissions": [], "groups": [1]}}, {"model": "users.user", "pk": 2, "fields": {"password": "pbkdf2_sha256$30000$gUamlRrQYFf6$J0K3YWhdEeiNfxAyiN0TB66z/We946lZ5ZOs4/1OQhI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:27.300Z", "username": "karen92", "name": "Doris Peters", "email": "shirley@feednation.mil", "role": "User", "avatar": "", "wechat": "carolyn63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "is_first_login": false, "date_expired": "2086-11-10T08:11:27.300Z", "created_by": "admin", "user_permissions": [], "groups": [1, 11]}}, {"model": "users.user", "pk": 3, "fields": {"password": "pbkdf2_sha256$30000$eG53EB60LmHa$2kQNkqPMf4ZCA3ZBG4ye7QG4BWP++rTKYnFiK+NWt1Y=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:27.489Z", "username": "jane93", "name": "Dorothy Bailey", "email": "linda@bluezoom.edu", "role": "Admin", "avatar": "", "wechat": "irene76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque ultrices mattis odio.", "is_first_login": false, "date_expired": "2086-11-10T08:11:27.489Z", "created_by": "admin", "user_permissions": [], "groups": [1, 94]}}, {"model": "users.user", "pk": 4, "fields": {"password": "pbkdf2_sha256$30000$e2kEE03o2o85$yZ69+XigCM+rdDh0SXKYiAZ8rv/H8zF+LVjY1WvMHSA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:27.666Z", "username": "sara69", "name": "Julia Mcdonald", "email": "andrea@aimbu.gov", "role": "Admin", "avatar": "", "wechat": "julia93", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi.", "is_first_login": false, "date_expired": "2086-11-10T08:11:27.666Z", "created_by": "admin", "user_permissions": [], "groups": [1, 30]}}, {"model": "users.user", "pk": 5, "fields": {"password": "pbkdf2_sha256$30000$qP1am2tKfC2c$VzbKIkT2Gg3UXJtO7a1pxa0MLWuLiUIA6ILKN0vu1CY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:27.849Z", "username": "tina66", "name": "Jessica Thompson", "email": "phyllis@skipstorm.edu", "role": "User", "avatar": "", "wechat": "angela85", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus vel nulla eget eros elementum pellentesque.", "is_first_login": false, "date_expired": "2086-11-10T08:11:27.849Z", "created_by": "admin", "user_permissions": [], "groups": [1, 55]}}, {"model": "users.user", "pk": 6, "fields": {"password": "pbkdf2_sha256$30000$BH8JHmHkJoXB$ZSjw0eEqtqknDTNjTqsEOBnz8JCpsidwkUz8tVyqswE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:28.044Z", "username": "carolyn83", "name": "Dorothy Jackson", "email": "nicole@mybuzz.com", "role": "Admin", "avatar": "", "wechat": "andrea90", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus vestibulum sagittis sapien.", "is_first_login": false, "date_expired": "2086-11-10T08:11:28.044Z", "created_by": "karen92", "user_permissions": [], "groups": [1, 3]}}, {"model": "users.user", "pk": 7, "fields": {"password": "pbkdf2_sha256$30000$2OOj9d2rKErX$lRd3k8sBnxlG5YdsoDnxW2l3MgCgy9M99jlgJ7uNVp8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:28.217Z", "username": "heather63", "name": "Annie Hart", "email": "patricia@youfeed.info", "role": "User", "avatar": "", "wechat": "denise69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec ut mauris eget massa tempor convallis.", "is_first_login": false, "date_expired": "2086-11-10T08:11:28.217Z", "created_by": "sara69", "user_permissions": [], "groups": [1, 56]}}, {"model": "users.user", "pk": 8, "fields": {"password": "pbkdf2_sha256$30000$B3o86ThNwpMQ$+ZuJA1YH6MP65Z7Gc2iYvThB8IEAyP8M7NNGegHnAcs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:28.401Z", "username": "margaret83", "name": "Helen George", "email": "joan@photojam.org", "role": "User", "avatar": "", "wechat": "irene66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin risus.", "is_first_login": false, "date_expired": "2086-11-10T08:11:28.402Z", "created_by": "jane93", "user_permissions": [], "groups": [1, 41]}}, {"model": "users.user", "pk": 9, "fields": {"password": "pbkdf2_sha256$30000$zMwxCnKkZWuD$80nmYlCoJmJHVyRoiXkBPTk9n/dYSqgB/AU54xBdjm4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:28.577Z", "username": "heather66", "name": "Brenda Clark", "email": "lori@jayo.edu", "role": "Admin", "avatar": "", "wechat": "ann90", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "is_first_login": false, "date_expired": "2086-11-10T08:11:28.577Z", "created_by": "admin", "user_permissions": [], "groups": [1, 35]}}, {"model": "users.user", "pk": 10, "fields": {"password": "pbkdf2_sha256$30000$1yWcsjsePQ1s$UXdsT8v4BJ0BHmsE6AzLZJ5ii6fFy/PEm1Tmk24wYQM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:28.755Z", "username": "kathy87", "name": "Shirley Watkins", "email": "judy@buzzbean.name", "role": "Admin", "avatar": "", "wechat": "lillian65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed ante.", "is_first_login": false, "date_expired": "2086-11-10T08:11:28.755Z", "created_by": "karen92", "user_permissions": [], "groups": [1, 49]}}, {"model": "users.user", "pk": 11, "fields": {"password": "pbkdf2_sha256$30000$RVcpyaCsv1pC$YCu8DY170A3lnx08ML8gWvFlWI2pLNT9cOkJW0OAY+w=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:28.935Z", "username": "tina64", "name": "Tammy Moore", "email": "sarah@pixope.org", "role": "Admin", "avatar": "", "wechat": "marilyn72", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Praesent lectus.", "is_first_login": false, "date_expired": "2086-11-10T08:11:28.935Z", "created_by": "heather66", "user_permissions": [], "groups": [1, 51]}}, {"model": "users.user", "pk": 12, "fields": {"password": "pbkdf2_sha256$30000$28tMbOr3AOso$Mn+OPZSerFvwn5oz7WtkIlr5hcO0WqVsl3jaVXB0SZ8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:29.124Z", "username": "jessica94", "name": "Christine Baker", "email": "bonnie@fivechat.gov", "role": "User", "avatar": "", "wechat": "lisa69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque ultrices mattis odio.", "is_first_login": false, "date_expired": "2086-11-10T08:11:29.124Z", "created_by": "carolyn83", "user_permissions": [], "groups": [1, 91]}}, {"model": "users.user", "pk": 13, "fields": {"password": "pbkdf2_sha256$30000$d9KtRW3ktQ1Y$kzxjE6AKW0P7Wr5VR1fVItiS52egDWKtYmrrVV2va3M=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:29.303Z", "username": "judith88", "name": "Jennifer Washington", "email": "janet@yakitri.mil", "role": "User", "avatar": "", "wechat": "jacqueline64", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam nulla.", "is_first_login": false, "date_expired": "2086-11-10T08:11:29.303Z", "created_by": "kathy87", "user_permissions": [], "groups": [1, 41]}}, {"model": "users.user", "pk": 14, "fields": {"password": "pbkdf2_sha256$30000$AUIzO8JKrY7o$DPZ7djZo6BhUuddhG44hWP6W6M2zcR6csSydBuJy6FY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:29.477Z", "username": "emily93", "name": "Marilyn Russell", "email": "kathryn@livepath.edu", "role": "User", "avatar": "", "wechat": "katherine77", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "is_first_login": false, "date_expired": "2086-11-10T08:11:29.477Z", "created_by": "sara69", "user_permissions": [], "groups": [1, 43]}}, {"model": "users.user", "pk": 15, "fields": {"password": "pbkdf2_sha256$30000$bZ9BxW2PtEQ3$yCqqU9HkyCoA/o/yLkRcGLrVNZELhKtkzdgGjHsE4Bc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:29.653Z", "username": "ruth85", "name": "Ann Jordan", "email": "ashley@feedfire.org", "role": "Admin", "avatar": "", "wechat": "jacqueline75", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "is_first_login": false, "date_expired": "2086-11-10T08:11:29.653Z", "created_by": "carolyn83", "user_permissions": [], "groups": [1, 92]}}, {"model": "users.user", "pk": 16, "fields": {"password": "pbkdf2_sha256$30000$S95C0tUVsDHh$b8r3ZcBsCxOITomO3f20neDOLWgmRe+KOkNbw+tQUeg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:29.864Z", "username": "rebecca85", "name": "Jane Olson", "email": "rose@thoughtsphere.info", "role": "Admin", "avatar": "", "wechat": "cynthia86", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Phasellus sit amet erat.", "is_first_login": false, "date_expired": "2086-11-10T08:11:29.864Z", "created_by": "emily93", "user_permissions": [], "groups": [1, 10]}}, {"model": "users.user", "pk": 17, "fields": {"password": "pbkdf2_sha256$30000$UL9Tj0c33gW8$xdEduZjVe0nXJrgR+Aac0BaQtF20BS/g8AVlKUk6S9Q=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:30.051Z", "username": "jane82", "name": "Teresa Brooks", "email": "christina@lajo.gov", "role": "User", "avatar": "", "wechat": "kathleen74", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque eget nunc.", "is_first_login": false, "date_expired": "2086-11-10T08:11:30.051Z", "created_by": "karen92", "user_permissions": [], "groups": [1, 27]}}, {"model": "users.user", "pk": 18, "fields": {"password": "pbkdf2_sha256$30000$gle0Sn2Mqj6Z$sIOL/Ud5+otzNZPPuS1Em7dr4+biT6Iv28JincUPJus=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:30.235Z", "username": "sarah86", "name": "Evelyn Lopez", "email": "jennifer@janyx.com", "role": "Admin", "avatar": "", "wechat": "lillian64", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante.", "is_first_login": false, "date_expired": "2086-11-10T08:11:30.235Z", "created_by": "jane93", "user_permissions": [], "groups": [1, 20]}}, {"model": "users.user", "pk": 19, "fields": {"password": "pbkdf2_sha256$30000$4BcIMSdA0iMp$rkqhCqn/ADSgPPQnQqDNe/8vxbwhQOQH79/AaqW7Umg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:30.411Z", "username": "marie66", "name": "Anna Lewis", "email": "cynthia@gabcube.info", "role": "Admin", "avatar": "", "wechat": "marie92", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla ac enim.", "is_first_login": false, "date_expired": "2086-11-10T08:11:30.411Z", "created_by": "sara69", "user_permissions": [], "groups": [1, 35]}}, {"model": "users.user", "pk": 20, "fields": {"password": "pbkdf2_sha256$30000$oQdDMidbZGXJ$rcMD8chTBRQ/0aD4Rds3Wy1vj2C/899H0dGJr/zjkJo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:30.589Z", "username": "stephanie76", "name": "Dorothy Taylor", "email": "jane@avavee.edu", "role": "Admin", "avatar": "", "wechat": "mildred85", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed vel enim sit amet nunc viverra dapibus.", "is_first_login": false, "date_expired": "2086-11-10T08:11:30.589Z", "created_by": "kathy87", "user_permissions": [], "groups": [1, 76]}}, {"model": "users.user", "pk": 21, "fields": {"password": "pbkdf2_sha256$30000$fJOlIwCl6uo3$m44nMaHrSDmWIZqN3JjKWT7LaZUp05ID0zCDf9khvAo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:30.765Z", "username": "sandra89", "name": "Sharon Stephens", "email": "denise@zoomdog.mil", "role": "Admin", "avatar": "", "wechat": "evelyn69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin risus.", "is_first_login": false, "date_expired": "2086-11-10T08:11:30.765Z", "created_by": "carolyn83", "user_permissions": [], "groups": [1, 79]}}, {"model": "users.user", "pk": 22, "fields": {"password": "pbkdf2_sha256$30000$6uE15m520iYC$DAA5iAw5w685t4WwB5CINv6n8oy+DxJ8jyDHUge9IMs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:30.941Z", "username": "lori77", "name": "Stephanie Lawson", "email": "helen@edgeclub.biz", "role": "User", "avatar": "", "wechat": "julia88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "is_first_login": false, "date_expired": "2086-11-10T08:11:30.941Z", "created_by": "sandra89", "user_permissions": [], "groups": [1, 59]}}, {"model": "users.user", "pk": 23, "fields": {"password": "pbkdf2_sha256$30000$EcqeYR99QsoH$GKDMHaBsVBFHiunhcHdloRCs+HqbZ8vx7Mh5Dl2eCfA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:31.120Z", "username": "frances77", "name": "Gloria Cox", "email": "carolyn@jetpulse.net", "role": "Admin", "avatar": "", "wechat": "helen76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Mauris lacinia sapien quis libero.", "is_first_login": false, "date_expired": "2086-11-10T08:11:31.120Z", "created_by": "marie66", "user_permissions": [], "groups": [1, 74]}}, {"model": "users.user", "pk": 24, "fields": {"password": "pbkdf2_sha256$30000$ca4UNlugYBnG$0N6AfjG49/Z4+MbmUuJcMF76bJXcv1BRm4sewZ8g4zA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:31.309Z", "username": "lisa86", "name": "Norma Morrison", "email": "cynthia@voomm.info", "role": "Admin", "avatar": "", "wechat": "jesse76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus tortor.", "is_first_login": false, "date_expired": "2086-11-10T08:11:31.309Z", "created_by": "stephanie76", "user_permissions": [], "groups": [1, 98]}}, {"model": "users.user", "pk": 25, "fields": {"password": "pbkdf2_sha256$30000$zCmtm5w7U0n2$ZyRcF9Z296H0CjS3DQXrlo/H8GSzoN/qUwslbSBlsKw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:31.484Z", "username": "virginia90", "name": "Christina Bryant", "email": "kelly@trudoo.net", "role": "User", "avatar": "", "wechat": "jean73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nunc purus.", "is_first_login": false, "date_expired": "2086-11-10T08:11:31.484Z", "created_by": "frances77", "user_permissions": [], "groups": [1, 79]}}, {"model": "users.user", "pk": 26, "fields": {"password": "pbkdf2_sha256$30000$GkKzLxMcoK3Y$N2r0xkkdO2K0H+YDWN5/Z6WqTeeNjssJvFPdIuXkETg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:31.658Z", "username": "janet70", "name": "Cynthia Hernandez", "email": "alice@wikibox.name", "role": "Admin", "avatar": "", "wechat": "laura80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean fermentum.", "is_first_login": false, "date_expired": "2086-11-10T08:11:31.658Z", "created_by": "rebecca85", "user_permissions": [], "groups": [1, 73]}}, {"model": "users.user", "pk": 27, "fields": {"password": "pbkdf2_sha256$30000$QpypekGim0PM$5ErNWSawQBM6zAWpcPO6IMRk1+Qh8otUSNL6URASCVo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:31.844Z", "username": "evelyn65", "name": "Lois Larson", "email": "lori@flashdog.biz", "role": "Admin", "avatar": "", "wechat": "gloria64", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "is_first_login": false, "date_expired": "2086-11-10T08:11:31.844Z", "created_by": "admin", "user_permissions": [], "groups": [1, 69]}}, {"model": "users.user", "pk": 28, "fields": {"password": "pbkdf2_sha256$30000$HbUfvf3KRmjQ$jD+c1yQn9GvUjlcrvpdOlw53ITEC94YPlZkk22HUI24=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:32.038Z", "username": "joyce66", "name": "Mary Moreno", "email": "kimberly@rhybox.com", "role": "User", "avatar": "", "wechat": "tammy80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi a ipsum.", "is_first_login": false, "date_expired": "2086-11-10T08:11:32.039Z", "created_by": "lori77", "user_permissions": [], "groups": [1, 2]}}, {"model": "users.user", "pk": 29, "fields": {"password": "pbkdf2_sha256$30000$rL6BMQaala3p$3gp+nYkCekz08rX2JJtlrR11/ewee2y2aT8L4QGm+fE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:32.260Z", "username": "jessica76", "name": "Jennifer Richardson", "email": "kelly@fliptune.gov", "role": "Admin", "avatar": "", "wechat": "diane81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur gravida nisi at nibh.", "is_first_login": false, "date_expired": "2086-11-10T08:11:32.260Z", "created_by": "heather66", "user_permissions": [], "groups": [1, 20]}}, {"model": "users.user", "pk": 30, "fields": {"password": "pbkdf2_sha256$30000$YCb0US7iqYB0$ls3LUUQwaNax728SdyQrIRW02LdnuTWSTxRnCSvyvX4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:32.436Z", "username": "anne68", "name": "Anne Cole", "email": "jacqueline@tagtune.name", "role": "User", "avatar": "", "wechat": "shirley74", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur in libero ut massa volutpat convallis.", "is_first_login": false, "date_expired": "2086-11-10T08:11:32.436Z", "created_by": "jane93", "user_permissions": [], "groups": [1, 54]}}, {"model": "users.user", "pk": 31, "fields": {"password": "pbkdf2_sha256$30000$TZfEfN0X7XaO$eqNLU91OTuonx+XB7FffWnB5T4VLduMMzCOZ7TtYy9A=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:32.622Z", "username": "pamela94", "name": "Annie Mitchell", "email": "beverly@realbridge.edu", "role": "Admin", "avatar": "", "wechat": "ruth79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus vestibulum sagittis sapien.", "is_first_login": false, "date_expired": "2086-11-10T08:11:32.622Z", "created_by": "marie66", "user_permissions": [], "groups": [1, 84]}}, {"model": "users.user", "pk": 32, "fields": {"password": "pbkdf2_sha256$30000$Jh2hUrJ2cmXL$KLfFJLEI8UaVXawcCnBAaYILznh6N5Oywpykoiz6EPg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:32.804Z", "username": "shirley70", "name": "Ashley Young", "email": "sandra@vimbo.edu", "role": "Admin", "avatar": "", "wechat": "julia69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum sed magna at nunc commodo placerat.", "is_first_login": false, "date_expired": "2086-11-10T08:11:32.804Z", "created_by": "heather63", "user_permissions": [], "groups": [1, 53]}}, {"model": "users.user", "pk": 33, "fields": {"password": "pbkdf2_sha256$30000$IEjE0IMxC4IB$zSGhk6Y7pf1nIYLgBv9eGSy0dArA6K/vZLmJ2fR/K7g=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:33.066Z", "username": "lori78", "name": "Karen Ruiz", "email": "beverly@ainyx.name", "role": "Admin", "avatar": "", "wechat": "carolyn89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.", "is_first_login": false, "date_expired": "2086-11-10T08:11:33.066Z", "created_by": "joyce66", "user_permissions": [], "groups": [1, 81]}}, {"model": "users.user", "pk": 34, "fields": {"password": "pbkdf2_sha256$30000$flxzBJP11VgS$EpP/ifqt4KxLLFL3HVGrh4ziD5aca6CpnrRHinbt31I=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:33.246Z", "username": "betty82", "name": "Norma Nguyen", "email": "julia@yoveo.name", "role": "Admin", "avatar": "", "wechat": "michelle86", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "is_first_login": false, "date_expired": "2086-11-10T08:11:33.247Z", "created_by": "sandra89", "user_permissions": [], "groups": [1, 80]}}, {"model": "users.user", "pk": 35, "fields": {"password": "pbkdf2_sha256$30000$4MruD8FL9Ltj$e/wzzvNWp3T03t8dF2Y1QbIMEmAqjTZKYfy9AqiFvYg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:33.430Z", "username": "jane65", "name": "Tammy Garcia", "email": "sharon@buzzdog.edu", "role": "User", "avatar": "", "wechat": "joan90", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "is_first_login": false, "date_expired": "2086-11-10T08:11:33.430Z", "created_by": "sara69", "user_permissions": [], "groups": [1, 84]}}, {"model": "users.user", "pk": 36, "fields": {"password": "pbkdf2_sha256$30000$NmGUTEmj3sEX$Lq3X+AEmJcEvl7pvXy3XO6fjMCMAZ79t+tFy7kWkBmw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:33.629Z", "username": "kelly76", "name": "Tina Burke", "email": "linda@quimm.edu", "role": "User", "avatar": "", "wechat": "stephanie68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin at turpis a pede posuere nonummy.", "is_first_login": false, "date_expired": "2086-11-10T08:11:33.629Z", "created_by": "betty82", "user_permissions": [], "groups": [1, 25]}}, {"model": "users.user", "pk": 37, "fields": {"password": "pbkdf2_sha256$30000$ztqn5YXvVhvi$hCVn25BVKx5/NEXrB0pGuPywEdQZCsCfr9HGo4pkMVQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:33.821Z", "username": "katherine75", "name": "Marie Burton", "email": "louise@twinte.biz", "role": "User", "avatar": "", "wechat": "anne85", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla suscipit ligula in lacus.", "is_first_login": false, "date_expired": "2086-11-10T08:11:33.821Z", "created_by": "jane93", "user_permissions": [], "groups": [1, 25]}}, {"model": "users.user", "pk": 38, "fields": {"password": "pbkdf2_sha256$30000$phHjvli9wvKd$//HnOaVcqBk9dBAjtF4F78nga4S0BM64CP8sLxtTFK8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:34.005Z", "username": "paula83", "name": "Paula Porter", "email": "mildred@tagcat.net", "role": "Admin", "avatar": "", "wechat": "bonnie85", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Mauris lacinia sapien quis libero.", "is_first_login": false, "date_expired": "2086-11-10T08:11:34.005Z", "created_by": "tina64", "user_permissions": [], "groups": [1, 55]}}, {"model": "users.user", "pk": 39, "fields": {"password": "pbkdf2_sha256$30000$Fpwo4X8pEhh6$3UguwQPT9RRalkNwfGOJQh2JVIWD6LgNMTh5ALNXw68=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:34.199Z", "username": "angela67", "name": "Emily Arnold", "email": "denise@realfire.info", "role": "User", "avatar": "", "wechat": "martha85", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi ut odio.", "is_first_login": false, "date_expired": "2086-11-10T08:11:34.199Z", "created_by": "katherine75", "user_permissions": [], "groups": [1, 63]}}, {"model": "users.user", "pk": 40, "fields": {"password": "pbkdf2_sha256$30000$sYI5QidSxd1Y$lSDC6O0ptwqAkoOW47n7OpK4EI59QhzRx0qb3qXLVUQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:34.382Z", "username": "christine69", "name": "Kimberly Campbell", "email": "laura@meetz.edu", "role": "Admin", "avatar": "", "wechat": "amy70", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse potenti.", "is_first_login": false, "date_expired": "2086-11-10T08:11:34.382Z", "created_by": "virginia90", "user_permissions": [], "groups": [1, 47]}}, {"model": "users.user", "pk": 41, "fields": {"password": "pbkdf2_sha256$30000$77rCfHHghYWt$Gpjgd8Rp5Ke0BF1c7udahRF4E7Ty/SxEtv3ZbN2pjJc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:34.561Z", "username": "kathleen63", "name": "Tina Morris", "email": "maria@zoomlounge.org", "role": "User", "avatar": "", "wechat": "shirley94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla nisl.", "is_first_login": false, "date_expired": "2086-11-10T08:11:34.561Z", "created_by": "marie66", "user_permissions": [], "groups": [1, 84]}}, {"model": "users.user", "pk": 42, "fields": {"password": "pbkdf2_sha256$30000$2Eu0Pqjm8bDp$ans3iVA8UUXJVvUoA6SESGVKRLv9zyB9MIRgWgFM2yg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:34.747Z", "username": "wanda75", "name": "Diane Smith", "email": "lois@eadel.info", "role": "User", "avatar": "", "wechat": "denise66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Etiam vel augue.", "is_first_login": false, "date_expired": "2086-11-10T08:11:34.747Z", "created_by": "sarah86", "user_permissions": [], "groups": [1, 35]}}, {"model": "users.user", "pk": 43, "fields": {"password": "pbkdf2_sha256$30000$UztE1ZHXjJ2P$74QB1lzoHEaUccSZzRZ4NH3yOkd6ywW2dV5IT5zZkWM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:34.925Z", "username": "stephanie87", "name": "Ashley Parker", "email": "marie@brainlounge.info", "role": "User", "avatar": "", "wechat": "ruby65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In est risus, auctor sed, tristique in, tempus sit amet, sem.", "is_first_login": false, "date_expired": "2086-11-10T08:11:34.925Z", "created_by": "betty82", "user_permissions": [], "groups": [1, 82]}}, {"model": "users.user", "pk": 44, "fields": {"password": "pbkdf2_sha256$30000$wtTMTw8AZcpQ$5VXK03Sw/Sf6kULkcEVQs3nwv507QjMDVWTnv/NRr2E=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:35.110Z", "username": "marie94", "name": "Ashley Dunn", "email": "wanda@kwideo.org", "role": "User", "avatar": "", "wechat": "sandra88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas ut massa quis augue luctus tincidunt.", "is_first_login": false, "date_expired": "2086-11-10T08:11:35.110Z", "created_by": "tina66", "user_permissions": [], "groups": [1, 34]}}, {"model": "users.user", "pk": 45, "fields": {"password": "pbkdf2_sha256$30000$SELbrIG9Pj6N$Y8ymb9CC9HCrh6r+CLxDq/kdNXrlDLTxEGgK0t2nTgM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:35.301Z", "username": "gloria65", "name": "Anne Stephens", "email": "gloria@rhyzio.net", "role": "Admin", "avatar": "", "wechat": "margaret63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur in libero ut massa volutpat convallis.", "is_first_login": false, "date_expired": "2086-11-10T08:11:35.301Z", "created_by": "judith88", "user_permissions": [], "groups": [1, 34]}}, {"model": "users.user", "pk": 46, "fields": {"password": "pbkdf2_sha256$30000$4o9WLQo7Yb0L$6eRWjXAkw0j07Gqd3OeYMZA00VBgKlBDS2OfZczZqLY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:35.482Z", "username": "virginia89", "name": "Kathleen Wells", "email": "tammy@eayo.mil", "role": "Admin", "avatar": "", "wechat": "barbara90", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "is_first_login": false, "date_expired": "2086-11-10T08:11:35.482Z", "created_by": "carolyn83", "user_permissions": [], "groups": [1, 13]}}, {"model": "users.user", "pk": 47, "fields": {"password": "pbkdf2_sha256$30000$FhqrcLkJTMpc$iR89rjI8wt89aPi6uZMszl98BuIvvOLPr2cF7vfB1uE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:35.659Z", "username": "theresa78", "name": "Brenda Ross", "email": "irene@livepath.mil", "role": "Admin", "avatar": "", "wechat": "debra83", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "is_first_login": false, "date_expired": "2086-11-10T08:11:35.659Z", "created_by": "ruth85", "user_permissions": [], "groups": [1, 41]}}, {"model": "users.user", "pk": 48, "fields": {"password": "pbkdf2_sha256$30000$jLOKMwCq9PeX$z6Mjp62IXiJ9dtDw62KvtbOgW7QikheVHKMEgIEPEq4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:35.882Z", "username": "diane80", "name": "Norma Collins", "email": "donna@skinix.name", "role": "Admin", "avatar": "", "wechat": "judith76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "is_first_login": false, "date_expired": "2086-11-10T08:11:35.882Z", "created_by": "pamela94", "user_permissions": [], "groups": [1, 50]}}, {"model": "users.user", "pk": 49, "fields": {"password": "pbkdf2_sha256$30000$oN4bzD56Uh0t$Dhfjb3XRG4CjHkiGdQKEQmfJDQpcZvzoeNCoxBR5Vc0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:36.062Z", "username": "linda82", "name": "Jean Stanley", "email": "ruth@tazzy.name", "role": "User", "avatar": "", "wechat": "kathleen66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "is_first_login": false, "date_expired": "2086-11-10T08:11:36.062Z", "created_by": "emily93", "user_permissions": [], "groups": [1, 71]}}, {"model": "users.user", "pk": 50, "fields": {"password": "pbkdf2_sha256$30000$sz8xq4Snazdz$z2U4AIU5ng75jhsAAIxUQQuTj3uxc61REJAGV/tDRxY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:36.250Z", "username": "irene70", "name": "Angela Martinez", "email": "karen@cogibox.com", "role": "User", "avatar": "", "wechat": "kathy70", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cras pellentesque volutpat dui.", "is_first_login": false, "date_expired": "2086-11-10T08:11:36.250Z", "created_by": "jane65", "user_permissions": [], "groups": [1, 87]}}, {"model": "users.user", "pk": 51, "fields": {"password": "pbkdf2_sha256$30000$uKc4VzSJNkMg$Dh5YLaWyAnoNnxgQ+I+pUfibBUF2E7gdbX64ZwkKFm0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:36.434Z", "username": "margaret92", "name": "Judy King", "email": "amy@oyoba.edu", "role": "Admin", "avatar": "", "wechat": "helen76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed ante.", "is_first_login": false, "date_expired": "2086-11-10T08:11:36.434Z", "created_by": "karen92", "user_permissions": [], "groups": [1, 65]}}, {"model": "users.user", "pk": 52, "fields": {"password": "pbkdf2_sha256$30000$H0Lmxn8T9tJD$8/bMPOUDf+Ezo/Z6brJ+WgxIZk7Zkal29iwWkKXGrWQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:36.618Z", "username": "laura78", "name": "Virginia Mills", "email": "patricia@yoveo.mil", "role": "User", "avatar": "", "wechat": "shirley87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "is_first_login": false, "date_expired": "2086-11-10T08:11:36.618Z", "created_by": "frances77", "user_permissions": [], "groups": [1, 69]}}, {"model": "users.user", "pk": 53, "fields": {"password": "pbkdf2_sha256$30000$TOFEyFMI0vjH$MRPSTh28bFexFyGDe/VD7ugExoQckS20jLv/NJsLHxU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:36.799Z", "username": "sara88", "name": "Debra Dunn", "email": "cynthia@jabbercube.com", "role": "User", "avatar": "", "wechat": "elizabeth75", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis consequat dui nec nisi volutpat eleifend.", "is_first_login": false, "date_expired": "2086-11-10T08:11:36.800Z", "created_by": "linda82", "user_permissions": [], "groups": [1, 53]}}, {"model": "users.user", "pk": 54, "fields": {"password": "pbkdf2_sha256$30000$dasP7RjeE6RL$h+Ma0hWiYVnc/Bd83kSJ+uG51k3kN4ld45g9aNRxPPo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:36.976Z", "username": "kathleen70", "name": "Janet Banks", "email": "ruby@linkbridge.name", "role": "User", "avatar": "", "wechat": "susan90", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed accumsan felis.", "is_first_login": false, "date_expired": "2086-11-10T08:11:36.976Z", "created_by": "heather66", "user_permissions": [], "groups": [1, 13]}}, {"model": "users.user", "pk": 55, "fields": {"password": "pbkdf2_sha256$30000$WqfKkO8FBHBg$aX96kTYufvXyO/xdFg41XdRnrEFVhaFD0RSAI40SRf8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:37.152Z", "username": "debra93", "name": "Stephanie Ferguson", "email": "tammy@twitterlist.net", "role": "User", "avatar": "", "wechat": "carol70", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In blandit ultrices enim.", "is_first_login": false, "date_expired": "2086-11-10T08:11:37.152Z", "created_by": "heather63", "user_permissions": [], "groups": [1, 84]}}, {"model": "users.user", "pk": 56, "fields": {"password": "pbkdf2_sha256$30000$LAAQV4n4il3n$+DVLZ2T5+htruDXHQ1vSxzw3ks+fZOYv/uiiYSWlDTU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:37.346Z", "username": "jean87", "name": "Beverly Carr", "email": "patricia@eamia.edu", "role": "User", "avatar": "", "wechat": "mildred67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec vitae nisi.", "is_first_login": false, "date_expired": "2086-11-10T08:11:37.346Z", "created_by": "heather66", "user_permissions": [], "groups": [1, 89]}}, {"model": "users.user", "pk": 57, "fields": {"password": "pbkdf2_sha256$30000$hpMjsfmewhXJ$0KzK+aXcfecNBROUkXtSvf6Zx6Hac5NN69FwBQnDBd0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:37.525Z", "username": "linda92", "name": "Diana Woods", "email": "lois@jabbersphere.name", "role": "User", "avatar": "", "wechat": "lori66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer ac leo.", "is_first_login": false, "date_expired": "2086-11-10T08:11:37.525Z", "created_by": "heather66", "user_permissions": [], "groups": [1, 31]}}, {"model": "users.user", "pk": 58, "fields": {"password": "pbkdf2_sha256$30000$zjbc7GDvkc0r$1fc9gBk3GQSee66WOF+oNVRjVOetIAbGk35j3Am7fPA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:37.711Z", "username": "kelly82", "name": "Evelyn Duncan", "email": "diana@zoonoodle.net", "role": "Admin", "avatar": "", "wechat": "phyllis85", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean sit amet justo.", "is_first_login": false, "date_expired": "2086-11-10T08:11:37.711Z", "created_by": "anne68", "user_permissions": [], "groups": [1, 31]}}, {"model": "users.user", "pk": 59, "fields": {"password": "pbkdf2_sha256$30000$yjfRODyIyyMW$m5Xdc/RjA9zYaEqSeNJJZ5PuZjivNrtWjUhS8lWXzPg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:37.908Z", "username": "deborah93", "name": "Virginia Daniels", "email": "katherine@browsebug.com", "role": "User", "avatar": "", "wechat": "catherine80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam porttitor lacus at turpis.", "is_first_login": false, "date_expired": "2086-11-10T08:11:37.908Z", "created_by": "shirley70", "user_permissions": [], "groups": [1, 76]}}, {"model": "users.user", "pk": 60, "fields": {"password": "pbkdf2_sha256$30000$ap9CLYPV3ziW$i4Vhs9gihGNJlBv2GdBfAWwKGNUcO1Y0YT1B7nlW/eM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:38.087Z", "username": "karen91", "name": "Laura Carpenter", "email": "pamela@blognation.net", "role": "Admin", "avatar": "", "wechat": "diana76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean sit amet justo.", "is_first_login": false, "date_expired": "2086-11-10T08:11:38.087Z", "created_by": "judith88", "user_permissions": [], "groups": [1, 34]}}, {"model": "users.user", "pk": 61, "fields": {"password": "pbkdf2_sha256$30000$1EGMboclZJ0G$uxnhhPX7lE/1q6E5t44kwDsnD7xUK2rVGOj2F8ntYmE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:38.261Z", "username": "lois77", "name": "Rose Watson", "email": "angela@einti.mil", "role": "Admin", "avatar": "", "wechat": "judith94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas ut massa quis augue luctus tincidunt.", "is_first_login": false, "date_expired": "2086-11-10T08:11:38.261Z", "created_by": "margaret83", "user_permissions": [], "groups": [1, 44]}}, {"model": "users.user", "pk": 62, "fields": {"password": "pbkdf2_sha256$30000$1ZfllZClkwF3$+ZV0H9ZokSQ7T2zXv0JvAFTYEZSiWi9dthOwTz5Uh68=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:38.447Z", "username": "ashley90", "name": "Evelyn Myers", "email": "joyce@jaxbean.biz", "role": "User", "avatar": "", "wechat": "susan78", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "is_first_login": false, "date_expired": "2086-11-10T08:11:38.447Z", "created_by": "marie66", "user_permissions": [], "groups": [1, 44]}}, {"model": "users.user", "pk": 63, "fields": {"password": "pbkdf2_sha256$30000$LPCeVqyTie2y$9oU9RdfjRX5AU+0VpYVwUA0creEvqfHCvnEYurLtIfo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:38.620Z", "username": "theresa86", "name": "Michelle Cox", "email": "irene@minyx.com", "role": "Admin", "avatar": "", "wechat": "diana83", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Ut at dolor quis odio consequat varius.", "is_first_login": false, "date_expired": "2086-11-10T08:11:38.620Z", "created_by": "angela67", "user_permissions": [], "groups": [1, 56]}}, {"model": "users.user", "pk": 64, "fields": {"password": "pbkdf2_sha256$30000$IY9orgDxf4UC$bOJ+SVwLvjoVU8JNef6AJsCphTw1R+hQb+JgFWzf9YA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:39.000Z", "username": "rachel65", "name": "Louise Wells", "email": "christina@twitterlist.mil", "role": "User", "avatar": "", "wechat": "linda79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Ut at dolor quis odio consequat varius.", "is_first_login": false, "date_expired": "2086-11-10T08:11:39.000Z", "created_by": "wanda75", "user_permissions": [], "groups": [1, 73]}}, {"model": "users.user", "pk": 65, "fields": {"password": "pbkdf2_sha256$30000$4nHzsON2n0oC$NcmkEBiwu4ulIgqqqdbZo1h2U1OKNOcAqvV920lfiOY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:39.185Z", "username": "joyce80", "name": "Melissa Greene", "email": "irene@skyba.biz", "role": "Admin", "avatar": "", "wechat": "nancy63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam molestie nibh in lectus.", "is_first_login": false, "date_expired": "2086-11-10T08:11:39.185Z", "created_by": "jessica94", "user_permissions": [], "groups": [1, 67]}}, {"model": "users.user", "pk": 66, "fields": {"password": "pbkdf2_sha256$30000$vEz0qiXdlfwG$R6XEwnsauG50O2jkpf3ONEwyhsCNv8poA92l+N43m1o=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:39.560Z", "username": "evelyn88", "name": "Cynthia Collins", "email": "annie@youopia.biz", "role": "User", "avatar": "", "wechat": "jean68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "is_first_login": false, "date_expired": "2086-11-10T08:11:39.560Z", "created_by": "linda82", "user_permissions": [], "groups": [1, 67]}}, {"model": "users.user", "pk": 67, "fields": {"password": "pbkdf2_sha256$30000$pbffkc3VwHiK$/VzeR/oFQlG3UA6DZwnBTQTDRwzqCwCrH93BK/rSL/4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:39.742Z", "username": "jessica68", "name": "Donna Knight", "email": "pamela@gigashots.biz", "role": "User", "avatar": "", "wechat": "beverly80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin risus.", "is_first_login": false, "date_expired": "2086-11-10T08:11:39.742Z", "created_by": "judith88", "user_permissions": [], "groups": [1, 79]}}, {"model": "users.user", "pk": 68, "fields": {"password": "pbkdf2_sha256$30000$17sKokl3Rt9E$w1KT8F/WwWndjkVVoS6fICAbqkeGDae22ZkbBQWDjls=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:39.920Z", "username": "dorothy87", "name": "Beverly Collins", "email": "rose@zoovu.mil", "role": "Admin", "avatar": "", "wechat": "diana84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Mauris ullamcorper purus sit amet nulla.", "is_first_login": false, "date_expired": "2086-11-10T08:11:39.920Z", "created_by": "sandra89", "user_permissions": [], "groups": [1, 96]}}, {"model": "users.user", "pk": 69, "fields": {"password": "pbkdf2_sha256$30000$6tsi1pBMvejP$8ehYvaUv3217Mb8SPEWlKl4ppWUfnkH1D+t0hiELr00=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:40.097Z", "username": "teresa87", "name": "Marilyn Oliver", "email": "paula@kwilith.com", "role": "User", "avatar": "", "wechat": "pamela64", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec semper sapien a libero.", "is_first_login": false, "date_expired": "2086-11-10T08:11:40.097Z", "created_by": "judith88", "user_permissions": [], "groups": [1, 60]}}, {"model": "users.user", "pk": 70, "fields": {"password": "pbkdf2_sha256$30000$FE7U8EUzOK1T$NXw2Rc+74THuD5Ho+lK7dZfd74ch75oJjGyZCngBkAQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:40.274Z", "username": "teresa68", "name": "Ruby Sullivan", "email": "jean@flipbug.com", "role": "User", "avatar": "", "wechat": "helen81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "is_first_login": false, "date_expired": "2086-11-10T08:11:40.274Z", "created_by": "ashley90", "user_permissions": [], "groups": [1, 101]}}, {"model": "users.user", "pk": 71, "fields": {"password": "pbkdf2_sha256$30000$Ck4YZAYfRhbs$OtR9Ip1qwg5mc/sEQM6H+kVJAGS+Mk1eeO2W2yGQAeA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:40.469Z", "username": "wanda80", "name": "Jane Ray", "email": "nicole@lajo.mil", "role": "Admin", "avatar": "", "wechat": "judy82", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur gravida nisi at nibh.", "is_first_login": false, "date_expired": "2086-11-10T08:11:40.469Z", "created_by": "kathleen70", "user_permissions": [], "groups": [1, 78]}}, {"model": "users.user", "pk": 72, "fields": {"password": "pbkdf2_sha256$30000$n9DaqrTxJfWZ$VP3FXW+Z2g+2dE7aMpuABRvPF5dKDOL8n/MiiAKlhSk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:40.648Z", "username": "debra77", "name": "Elizabeth Greene", "email": "jean@izio.net", "role": "User", "avatar": "", "wechat": "cheryl65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi porttitor lorem id ligula.", "is_first_login": false, "date_expired": "2086-11-10T08:11:40.648Z", "created_by": "katherine75", "user_permissions": [], "groups": [1, 81]}}, {"model": "users.user", "pk": 73, "fields": {"password": "pbkdf2_sha256$30000$heGjmXcRDteE$QYTd41cU59rhNiCLyHkyupNLTZSwgWi4H5foyuJdmqY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:40.827Z", "username": "paula71", "name": "Rose Smith", "email": "emily@omba.info", "role": "User", "avatar": "", "wechat": "carol75", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "is_first_login": false, "date_expired": "2086-11-10T08:11:40.827Z", "created_by": "evelyn65", "user_permissions": [], "groups": [1, 56]}}, {"model": "users.user", "pk": 74, "fields": {"password": "pbkdf2_sha256$30000$4bnYR1Wbax7v$YbI8+K6ylTc0gcejxMrHeG9hW5YFWQ8GoDqLJPxk39M=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:41.011Z", "username": "anna71", "name": "Beverly Fernandez", "email": "jessica@skilith.biz", "role": "Admin", "avatar": "", "wechat": "norma82", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus tortor.", "is_first_login": false, "date_expired": "2086-11-10T08:11:41.011Z", "created_by": "lori77", "user_permissions": [], "groups": [1, 95]}}, {"model": "users.user", "pk": 75, "fields": {"password": "pbkdf2_sha256$30000$n22AGpUtFdfO$lundVjKIGAb8HS4wISd67Ru+pLcZYcww5Pxf9XGv3cY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:41.208Z", "username": "deborah64", "name": "Andrea Carter", "email": "sharon@quatz.com", "role": "Admin", "avatar": "", "wechat": "mildred63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus vestibulum sagittis sapien.", "is_first_login": false, "date_expired": "2086-11-10T08:11:41.208Z", "created_by": "ruth85", "user_permissions": [], "groups": [1, 31]}}, {"model": "users.user", "pk": 76, "fields": {"password": "pbkdf2_sha256$30000$tVok7txMYS6x$ApGZOQ87pzAVief8+Sg/qsc/nPS28DZH9ttlqmdUbwY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:41.402Z", "username": "cheryl89", "name": "Joan Marshall", "email": "jean@trunyx.mil", "role": "Admin", "avatar": "", "wechat": "karen65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis aliquam convallis nunc.", "is_first_login": false, "date_expired": "2086-11-10T08:11:41.402Z", "created_by": "ashley90", "user_permissions": [], "groups": [1, 17]}}, {"model": "users.user", "pk": 77, "fields": {"password": "pbkdf2_sha256$30000$3xCqRI6vjXPo$XQScvt0YbuVaQtJuQlvz/ns4JTUtqJ7zbnRKyonLX5w=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:41.601Z", "username": "deborah82", "name": "Jessica Alexander", "email": "annie@twiyo.gov", "role": "Admin", "avatar": "", "wechat": "barbara63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec semper sapien a libero.", "is_first_login": false, "date_expired": "2086-11-10T08:11:41.601Z", "created_by": "emily93", "user_permissions": [], "groups": [1, 30]}}, {"model": "users.user", "pk": 78, "fields": {"password": "pbkdf2_sha256$30000$4phtpKDs1vk6$ZogW5u6KSCWA5F4ZH6BqR5e05HTqLi3doISlnWcLDZ0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:41.792Z", "username": "julia94", "name": "Virginia Peters", "email": "jean@realcube.biz", "role": "User", "avatar": "", "wechat": "catherine68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Phasellus sit amet erat.", "is_first_login": false, "date_expired": "2086-11-10T08:11:41.792Z", "created_by": "wanda80", "user_permissions": [], "groups": [1, 4]}}, {"model": "users.user", "pk": 79, "fields": {"password": "pbkdf2_sha256$30000$B2Vopt09sEfm$xQP66kIMwcN6XNyQ3N+eJdGNlkRAfTzmDvHjscpmEn4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:41.968Z", "username": "carol79", "name": "Kelly Parker", "email": "jean@voonyx.net", "role": "User", "avatar": "", "wechat": "dorothy89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin risus.", "is_first_login": false, "date_expired": "2086-11-10T08:11:41.968Z", "created_by": "diane80", "user_permissions": [], "groups": [1, 40]}}, {"model": "users.user", "pk": 80, "fields": {"password": "pbkdf2_sha256$30000$q2YgyEkrHAka$QxroIt9WKi5vgPPfOR97iGSPxhIxX2ZdTSxEt5ci4cc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:42.148Z", "username": "barbara78", "name": "Tammy Martin", "email": "nancy@devpulse.gov", "role": "Admin", "avatar": "", "wechat": "marilyn65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Sed vel enim sit amet nunc viverra dapibus.", "is_first_login": false, "date_expired": "2086-11-10T08:11:42.148Z", "created_by": "sandra89", "user_permissions": [], "groups": [1, 56]}}, {"model": "users.user", "pk": 81, "fields": {"password": "pbkdf2_sha256$30000$Q0QXbooDM7DD$qwzfxOn1DxU6wc8ZgNm9VDGQgPWflwmNtTQ86SDGXhc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:42.363Z", "username": "rose91", "name": "Diane Ortiz", "email": "anne@quire.info", "role": "User", "avatar": "", "wechat": "linda87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "is_first_login": false, "date_expired": "2086-11-10T08:11:42.363Z", "created_by": "jane82", "user_permissions": [], "groups": [1, 16]}}, {"model": "users.user", "pk": 82, "fields": {"password": "pbkdf2_sha256$30000$vKjFPMhlxM7A$QpQQybjyrcO0TRUz2WqHm1vtcY+f7d8yT30fhpRJXBs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:42.550Z", "username": "jean85", "name": "Rebecca Hernandez", "email": "angela@jaxworks.info", "role": "User", "avatar": "", "wechat": "diana65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "is_first_login": false, "date_expired": "2086-11-10T08:11:42.550Z", "created_by": "stephanie76", "user_permissions": [], "groups": [1, 56]}}, {"model": "users.user", "pk": 83, "fields": {"password": "pbkdf2_sha256$30000$qZaYJ94TcWzi$VWUlj7sL6SKO5aU+CIVZK/U0EmIYkXu6iyNQFDZ1oPg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:42.730Z", "username": "rachel75", "name": "Jennifer Perez", "email": "cynthia@fliptune.info", "role": "User", "avatar": "", "wechat": "evelyn79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin interdum mauris non ligula pellentesque ultrices.", "is_first_login": false, "date_expired": "2086-11-10T08:11:42.730Z", "created_by": "kathleen63", "user_permissions": [], "groups": [1, 46]}}, {"model": "users.user", "pk": 84, "fields": {"password": "pbkdf2_sha256$30000$1ThM4Cp1M7Ux$xk2T2RdK/6Jm6VhPb6JPCBdipHBs6kykWYYN3yWZuWo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:42.919Z", "username": "brenda79", "name": "Sarah Robertson", "email": "norma@feednation.biz", "role": "Admin", "avatar": "", "wechat": "barbara88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Phasellus sit amet erat.", "is_first_login": false, "date_expired": "2086-11-10T08:11:42.919Z", "created_by": "jean87", "user_permissions": [], "groups": [1, 67]}}, {"model": "users.user", "pk": 85, "fields": {"password": "pbkdf2_sha256$30000$FuHZV18FYhUb$/dbYPco50G0Z581nL3oNuWWTvXL+tfggj2S97+eTKy4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:43.099Z", "username": "evelyn89", "name": "Ashley Hart", "email": "diane@jabbertype.gov", "role": "User", "avatar": "", "wechat": "amy87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "is_first_login": false, "date_expired": "2086-11-10T08:11:43.099Z", "created_by": "lois77", "user_permissions": [], "groups": [1, 22]}}, {"model": "users.user", "pk": 86, "fields": {"password": "pbkdf2_sha256$30000$gM2WL8OGTRAM$/HAJ66SF1ZAGeFC89MAZTT84Fc9rMwe8hvjtRxJyJyg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:43.353Z", "username": "joan86", "name": "Michelle Greene", "email": "angela@youspan.com", "role": "Admin", "avatar": "", "wechat": "pamela69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "is_first_login": false, "date_expired": "2086-11-10T08:11:43.353Z", "created_by": "judith88", "user_permissions": [], "groups": [1, 44]}}, {"model": "users.user", "pk": 87, "fields": {"password": "pbkdf2_sha256$30000$lQca4k8fX7eu$NOb2BJXdc/UPH9Y5dRU/vofbFxlMivUqbb21vYXGV64=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:43.554Z", "username": "kathy66", "name": "Kathleen Clark", "email": "rose@gigashots.info", "role": "User", "avatar": "", "wechat": "diane63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean sit amet justo.", "is_first_login": false, "date_expired": "2086-11-10T08:11:43.554Z", "created_by": "kathleen63", "user_permissions": [], "groups": [1, 64]}}, {"model": "users.user", "pk": 88, "fields": {"password": "pbkdf2_sha256$30000$QyoJMHbCmA1c$eTdQM9qeGf56+iGS/5Dld6Kbxk6pBgKEy8JJ1GGt460=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:43.753Z", "username": "paula81", "name": "Virginia Campbell", "email": "michelle@latz.gov", "role": "User", "avatar": "", "wechat": "deborah70", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "is_first_login": false, "date_expired": "2086-11-10T08:11:43.753Z", "created_by": "deborah93", "user_permissions": [], "groups": [1, 38]}}, {"model": "users.user", "pk": 89, "fields": {"password": "pbkdf2_sha256$30000$EB1sTZgSBOWb$A0hH2e/JFL/yUgAyCyHufSM+3vXAycw8BibhMZhOe8c=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:43.942Z", "username": "lori72", "name": "Michelle Knight", "email": "patricia@dynazzy.org", "role": "User", "avatar": "", "wechat": "ruby87", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "is_first_login": false, "date_expired": "2086-11-10T08:11:43.942Z", "created_by": "virginia89", "user_permissions": [], "groups": [1, 27]}}, {"model": "users.user", "pk": 90, "fields": {"password": "pbkdf2_sha256$30000$xG12xMFUbHy6$mb+Bpc/mynj8xcpZFMl/yCCIvakGOUalmz7+Mu8PKnY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:44.127Z", "username": "pamela87", "name": "Stephanie Moreno", "email": "nicole@feedmix.com", "role": "Admin", "avatar": "", "wechat": "jessica86", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "is_first_login": false, "date_expired": "2086-11-10T08:11:44.127Z", "created_by": "heather66", "user_permissions": [], "groups": [1, 38]}}, {"model": "users.user", "pk": 91, "fields": {"password": "pbkdf2_sha256$30000$2SVtCER8QwhB$c0ZTjwGyVURQ6ILM+mP01GFKdhCw5zCuo/TgMHcP2kE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:44.326Z", "username": "michelle86", "name": "Diana Hall", "email": "teresa@centidel.biz", "role": "User", "avatar": "", "wechat": "carolyn81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla tempus.", "is_first_login": false, "date_expired": "2086-11-10T08:11:44.327Z", "created_by": "katherine75", "user_permissions": [], "groups": [1, 98]}}, {"model": "users.user", "pk": 92, "fields": {"password": "pbkdf2_sha256$30000$faftZd0NRjGY$yRVjvWAzcpt1BrPKCnIDzTEZQzl+D6wGi5YlCY5PKA4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:44.519Z", "username": "angela79", "name": "Tammy Gonzalez", "email": "judith@npath.name", "role": "Admin", "avatar": "", "wechat": "linda90", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean fermentum.", "is_first_login": false, "date_expired": "2086-11-10T08:11:44.519Z", "created_by": "deborah64", "user_permissions": [], "groups": [1, 44]}}, {"model": "users.user", "pk": 93, "fields": {"password": "pbkdf2_sha256$30000$mgkG6Eo4hxZk$n11cv6bOCeLBQexZFVU1hdes/IK35HhYyDmBTy2P38A=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:44.706Z", "username": "judy93", "name": "Tammy Lee", "email": "wanda@oozz.mil", "role": "User", "avatar": "", "wechat": "amy63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam non mauris.", "is_first_login": false, "date_expired": "2086-11-10T08:11:44.706Z", "created_by": "angela67", "user_permissions": [], "groups": [1, 57]}}, {"model": "users.user", "pk": 94, "fields": {"password": "pbkdf2_sha256$30000$Aw7JttC6jp5E$ji9qe2YWXV2M80gDSoUQttBmnN2ssG9Urs3V6qhSaLI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:44.906Z", "username": "rose94", "name": "Catherine Matthews", "email": "anna@wikido.biz", "role": "Admin", "avatar": "", "wechat": "joan65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam sit amet diam in magna bibendum imperdiet.", "is_first_login": false, "date_expired": "2086-11-10T08:11:44.906Z", "created_by": "paula71", "user_permissions": [], "groups": [1, 80]}}, {"model": "users.user", "pk": 95, "fields": {"password": "pbkdf2_sha256$30000$9TUUUPnYnN8X$GXQpHO9QXyF/R/hBxy9tMFXstv4qUFQl2zIhPHfSEaQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:45.097Z", "username": "mary67", "name": "Paula Gonzalez", "email": "lisa@flipstorm.mil", "role": "User", "avatar": "", "wechat": "evelyn81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse potenti.", "is_first_login": false, "date_expired": "2086-11-10T08:11:45.097Z", "created_by": "heather63", "user_permissions": [], "groups": [1, 92]}}, {"model": "users.user", "pk": 96, "fields": {"password": "pbkdf2_sha256$30000$7nbg8wVBj6CA$SYqtHke+ImFYtyzACHX2hiUyZdaEaOHrQ6YfiPFml04=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:45.299Z", "username": "joyce79", "name": "Louise Martin", "email": "debra@browsebug.mil", "role": "Admin", "avatar": "", "wechat": "anna93", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ac est lacinia nisi venenatis tristique.", "is_first_login": false, "date_expired": "2086-11-10T08:11:45.299Z", "created_by": "lori77", "user_permissions": [], "groups": [1, 82]}}, {"model": "users.user", "pk": 97, "fields": {"password": "pbkdf2_sha256$30000$FchO8oFrBip4$ml4/V95rhNJChV8HUxUzK3vTWEVpC2koAiRORdYMx4I=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:45.499Z", "username": "nicole75", "name": "Tina Bryant", "email": "katherine@voomm.com", "role": "User", "avatar": "", "wechat": "louise92", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "is_first_login": false, "date_expired": "2086-11-10T08:11:45.499Z", "created_by": "laura78", "user_permissions": [], "groups": [1, 15]}}, {"model": "users.user", "pk": 98, "fields": {"password": "pbkdf2_sha256$30000$WDoe8wdCOPE7$HDtCeF8UDahYeQtwPckYQsSEWRz+3wrLgJwsrMMvQKg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:45.683Z", "username": "anne87", "name": "Teresa Richardson", "email": "deborah@buzzbean.net", "role": "Admin", "avatar": "", "wechat": "debra82", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse accumsan tortor quis turpis.", "is_first_login": false, "date_expired": "2086-11-10T08:11:45.683Z", "created_by": "julia94", "user_permissions": [], "groups": [1, 4]}}, {"model": "users.user", "pk": 99, "fields": {"password": "pbkdf2_sha256$30000$7NNsqxFjWUIr$Oihg5a90plX0RpEV+5IMru9WGUKtVWi5ioFKPZwaVoE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-27T08:11:45.874Z", "username": "emily70", "name": "Joyce Bishop", "email": "andrea@zoombeat.name", "role": "Admin", "avatar": "", "wechat": "lillian69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis mattis egestas metus.", "is_first_login": false, "date_expired": "2086-11-10T08:11:45.874Z", "created_by": "cheryl89", "user_permissions": [], "groups": [1, 87]}}] \ No newline at end of file +[{"model": "assets.idc", "pk": 1, "fields": {"name": "George Fowler", "bandwidth": "200M", "contact": "Charles Gray", "phone": "5-(040)883-6269", "address": "Anderson19827 Monument Alley", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.802Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Donec odio justo, sollicitudin ut, suscipit a, feugiat et, eros."}}, {"model": "assets.idc", "pk": 2, "fields": {"name": "Donna Arnold", "bandwidth": "200M", "contact": "Debra Cole", "phone": "9-(630)719-5400", "address": "Barstow9 Mockingbird Street", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.805Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Proin risus."}}, {"model": "assets.idc", "pk": 3, "fields": {"name": "Maria Wells", "bandwidth": "200M", "contact": "Sharon Lane", "phone": "3-(604)210-2617", "address": "Baldwin Park3061 Summit Pass", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.806Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis."}}, {"model": "assets.idc", "pk": 4, "fields": {"name": "Alice Gonzales", "bandwidth": "200M", "contact": "Jacqueline Murray", "phone": "8-(630)598-3343", "address": "Monterey Park634 Moose Park", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.807Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Morbi non lectus."}}, {"model": "assets.idc", "pk": 5, "fields": {"name": "Michelle Murray", "bandwidth": "200M", "contact": "Phyllis Johnston", "phone": "3-(548)603-5738", "address": "Lemon Grove8630 Coleman Plaza", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.809Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nullam molestie nibh in lectus."}}, {"model": "assets.idc", "pk": 6, "fields": {"name": "Ashley Richards", "bandwidth": "200M", "contact": "Sharon Harper", "phone": "3-(018)486-5418", "address": "Taft52469 Waxwing Way", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.812Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa."}}, {"model": "assets.idc", "pk": 7, "fields": {"name": "Bonnie Myers", "bandwidth": "200M", "contact": "Cheryl Duncan", "phone": "3-(617)055-3027", "address": "Palmdale378 Fisk Crossing", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.814Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc."}}, {"model": "assets.idc", "pk": 8, "fields": {"name": "Andrea Phillips", "bandwidth": "200M", "contact": "Cheryl Rose", "phone": "0-(098)539-4235", "address": "Tulare1 Monterey Park", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.816Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Aenean fermentum."}}, {"model": "assets.idc", "pk": 9, "fields": {"name": "Theresa Palmer", "bandwidth": "200M", "contact": "Christine Fisher", "phone": "4-(551)769-3945", "address": "Corning39047 Brentwood Pass", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.817Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem."}}, {"model": "assets.idc", "pk": 10, "fields": {"name": "Louise Nelson", "bandwidth": "200M", "contact": "Laura Ellis", "phone": "3-(447)108-5273", "address": "Maricopa0287 Derek Alley", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.819Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit."}}, {"model": "assets.idc", "pk": 11, "fields": {"name": "Margaret Adams", "bandwidth": "200M", "contact": "Judith Olson", "phone": "9-(864)241-7871", "address": "Pasadena6 Lyons Park", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.822Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam."}}, {"model": "assets.idc", "pk": 12, "fields": {"name": "Ashley Jones", "bandwidth": "200M", "contact": "Christine Stephens", "phone": "0-(810)674-3076", "address": "Sanger8591 Lake View Lane", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.824Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Etiam pretium iaculis justo."}}, {"model": "assets.idc", "pk": 13, "fields": {"name": "Tina Fox", "bandwidth": "200M", "contact": "Karen Price", "phone": "2-(516)305-8460", "address": "Anderson04917 4th Place", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.826Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Suspendisse potenti."}}, {"model": "assets.idc", "pk": 14, "fields": {"name": "Cheryl Freeman", "bandwidth": "200M", "contact": "Virginia Bowman", "phone": "8-(451)880-4093", "address": "Hanford04687 La Follette Place", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.827Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit."}}, {"model": "assets.idc", "pk": 15, "fields": {"name": "Michelle Ruiz", "bandwidth": "200M", "contact": "Andrea Brown", "phone": "6-(332)797-0233", "address": "El Monte86294 Coleman Hill", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.829Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Morbi ut odio."}}, {"model": "assets.idc", "pk": 16, "fields": {"name": "Kelly Elliott", "bandwidth": "200M", "contact": "Rose Sims", "phone": "6-(550)299-9648", "address": "Norco509 Lawn Court", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.830Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Proin interdum mauris non ligula pellentesque ultrices."}}, {"model": "assets.idc", "pk": 17, "fields": {"name": "Anne Hanson", "bandwidth": "200M", "contact": "Rebecca Spencer", "phone": "7-(636)031-1826", "address": "La Quinta894 Golf Course Park", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.832Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Etiam faucibus cursus urna."}}, {"model": "assets.idc", "pk": 18, "fields": {"name": "Virginia Banks", "bandwidth": "200M", "contact": "Louise Myers", "phone": "3-(594)256-7316", "address": "El Cerrito9 Nova Trail", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.834Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Etiam faucibus cursus urna."}}, {"model": "assets.idc", "pk": 19, "fields": {"name": "Cheryl Andrews", "bandwidth": "200M", "contact": "Mary Taylor", "phone": "8-(262)459-5236", "address": "Stockton20 Rigney Drive", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.835Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Nulla tempus."}}, {"model": "assets.idc", "pk": 20, "fields": {"name": "Denise Young", "bandwidth": "200M", "contact": "Louise Bailey", "phone": "1-(499)414-9751", "address": "Temple City0 Lake View Terrace", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.837Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Praesent blandit lacinia erat."}}, {"model": "assets.idc", "pk": 21, "fields": {"name": "Louise Hill", "bandwidth": "200M", "contact": "Ruth Myers", "phone": "8-(447)798-9793", "address": "Union City93 Merrick Alley", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.839Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Morbi a ipsum."}}, {"model": "assets.idc", "pk": 22, "fields": {"name": "Phyllis Kelly", "bandwidth": "200M", "contact": "Margaret George", "phone": "5-(287)713-7649", "address": "Mountain View72690 Thierer Park", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.841Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus."}}, {"model": "assets.idc", "pk": 23, "fields": {"name": "Lori Fernandez", "bandwidth": "200M", "contact": "Janet Bailey", "phone": "1-(708)691-9444", "address": "Ferndale5 Rieder Junction", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.843Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Morbi a ipsum."}}, {"model": "assets.idc", "pk": 24, "fields": {"name": "Sandra Nichols", "bandwidth": "200M", "contact": "Jean Hamilton", "phone": "6-(488)503-4196", "address": "Montclair784 Barnett Junction", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.846Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Morbi vel lectus in quam fringilla rhoncus."}}, {"model": "assets.idc", "pk": 25, "fields": {"name": "Linda Ruiz", "bandwidth": "200M", "contact": "Carolyn Lynch", "phone": "9-(188)046-0328", "address": "Lafayette4059 Gerald Alley", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.850Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nulla facilisi."}}, {"model": "assets.idc", "pk": 26, "fields": {"name": "Lisa Kelly", "bandwidth": "200M", "contact": "Alice Stewart", "phone": "4-(933)308-5973", "address": "Sausalito2963 Clove Point", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.851Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Duis at velit eu est congue elementum."}}, {"model": "assets.idc", "pk": 27, "fields": {"name": "Brenda Garza", "bandwidth": "200M", "contact": "Theresa Hill", "phone": "7-(450)934-3916", "address": "El Monte7345 Buell Place", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.853Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem."}}, {"model": "assets.idc", "pk": 28, "fields": {"name": "Mary Williams", "bandwidth": "200M", "contact": "Emily Gutierrez", "phone": "5-(093)171-8204", "address": "Gonzales60421 Elmside Parkway", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.855Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "In sagittis dui vel nisl."}}, {"model": "assets.idc", "pk": 29, "fields": {"name": "Ruth Chapman", "bandwidth": "200M", "contact": "Martha Palmer", "phone": "4-(482)963-8620", "address": "Windsor1 Algoma Lane", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.857Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "In congue."}}, {"model": "assets.idc", "pk": 30, "fields": {"name": "Janet James", "bandwidth": "200M", "contact": "Phyllis Richardson", "phone": "9-(569)564-0435", "address": "Susanville06591 Hoepker Plaza", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.858Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam."}}, {"model": "assets.idc", "pk": 31, "fields": {"name": "Denise Parker", "bandwidth": "200M", "contact": "Denise Armstrong", "phone": "2-(467)303-4151", "address": "Hemet4293 Aberg Parkway", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.860Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Integer tincidunt ante vel ipsum."}}, {"model": "assets.idc", "pk": 32, "fields": {"name": "Paula Rogers", "bandwidth": "200M", "contact": "Rose Frazier", "phone": "8-(829)431-2629", "address": "Monterey Park6075 Shoshone Pass", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.862Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Integer ac neque."}}, {"model": "assets.idc", "pk": 33, "fields": {"name": "Kathryn Hughes", "bandwidth": "200M", "contact": "Anne Willis", "phone": "9-(667)008-5710", "address": "South San Francisco087 Clove Way", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.865Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Integer non velit."}}, {"model": "assets.idc", "pk": 34, "fields": {"name": "Irene Sanders", "bandwidth": "200M", "contact": "Melissa Dean", "phone": "2-(660)780-2387", "address": "Parlier1325 Dorton Park", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.867Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo."}}, {"model": "assets.idc", "pk": 35, "fields": {"name": "Eugene Garcia", "bandwidth": "200M", "contact": "Pamela Sims", "phone": "2-(198)816-1278", "address": "Torrance30 Pine View Crossing", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.869Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Morbi a ipsum."}}, {"model": "assets.idc", "pk": 36, "fields": {"name": "Lisa Cole", "bandwidth": "200M", "contact": "Linda Perry", "phone": "3-(349)520-3945", "address": "Fountain Valley93467 Chive Lane", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.871Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Vestibulum sed magna at nunc commodo placerat."}}, {"model": "assets.idc", "pk": 37, "fields": {"name": "Stephanie Garcia", "bandwidth": "200M", "contact": "Helen Fuller", "phone": "4-(457)337-1861", "address": "Walnut6952 Continental Court", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.873Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus."}}, {"model": "assets.idc", "pk": 38, "fields": {"name": "Michelle Matthews", "bandwidth": "200M", "contact": "Amy Lopez", "phone": "7-(925)725-7818", "address": "Exeter1 Northwestern Drive", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.874Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl."}}, {"model": "assets.idc", "pk": 39, "fields": {"name": "Kathy Reed", "bandwidth": "200M", "contact": "Joyce Snyder", "phone": "5-(827)366-0483", "address": "El Centro29814 Ruskin Plaza", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.876Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Morbi porttitor lorem id ligula."}}, {"model": "assets.idc", "pk": 40, "fields": {"name": "Rachel Richardson", "bandwidth": "200M", "contact": "Margaret Ramirez", "phone": "8-(518)556-9007", "address": "Yucaipa084 Kenwood Park", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.879Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Suspendisse potenti."}}, {"model": "assets.idc", "pk": 41, "fields": {"name": "Christina Green", "bandwidth": "200M", "contact": "Kimberly Perry", "phone": "7-(653)194-2143", "address": "Vista1 Steensland Court", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.881Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Praesent id massa id nisl venenatis lacinia."}}, {"model": "assets.idc", "pk": 42, "fields": {"name": "Carolyn Harrison", "bandwidth": "200M", "contact": "Kelly Hansen", "phone": "6-(862)158-9037", "address": "Turlock8430 Springview Street", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.882Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Pellentesque ultrices mattis odio."}}, {"model": "assets.idc", "pk": 43, "fields": {"name": "Maria Burke", "bandwidth": "200M", "contact": "Sarah Johnson", "phone": "0-(663)668-0766", "address": "Visalia30 Elka Drive", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.884Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Aenean fermentum."}}, {"model": "assets.idc", "pk": 44, "fields": {"name": "Sarah Duncan", "bandwidth": "200M", "contact": "Rebecca Mitchell", "phone": "3-(770)877-3378", "address": "Los Gatos63 Parkside Road", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.885Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Donec vitae nisi."}}, {"model": "assets.idc", "pk": 45, "fields": {"name": "Bonnie Young", "bandwidth": "200M", "contact": "Patricia Robertson", "phone": "2-(466)346-7614", "address": "Marysville43 Harbort Terrace", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.887Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Donec quis orci eget orci vehicula condimentum."}}, {"model": "assets.idc", "pk": 46, "fields": {"name": "Jessica Bowman", "bandwidth": "200M", "contact": "Teresa Sullivan", "phone": "4-(272)327-0054", "address": "Torrance057 Saint Paul Hill", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.889Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nam dui."}}, {"model": "assets.idc", "pk": 47, "fields": {"name": "Theresa Jackson", "bandwidth": "200M", "contact": "Kelly Griffin", "phone": "7-(620)760-0465", "address": "San Marcos09167 Homewood Center", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.891Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Curabitur in libero ut massa volutpat convallis."}}, {"model": "assets.idc", "pk": 48, "fields": {"name": "Susan Wheeler", "bandwidth": "200M", "contact": "Mildred Black", "phone": "5-(585)212-7866", "address": "San Fernando842 Derek Center", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.893Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat."}}, {"model": "assets.idc", "pk": 49, "fields": {"name": "Ruby Rice", "bandwidth": "200M", "contact": "Jane Duncan", "phone": "5-(172)190-5718", "address": "San Marino5268 Hauk Crossing", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.896Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Integer tincidunt ante vel ipsum."}}, {"model": "assets.idc", "pk": 50, "fields": {"name": "Jennifer Carroll", "bandwidth": "200M", "contact": "Phyllis Romero", "phone": "3-(042)461-5898", "address": "Newport Beach67 Sutteridge Pass", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.898Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Suspendisse potenti."}}, {"model": "assets.idc", "pk": 51, "fields": {"name": "Lisa Johnston", "bandwidth": "200M", "contact": "Patricia Matthews", "phone": "5-(576)975-6693", "address": "Grover Beach82547 Meadow Valley Junction", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.900Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Pellentesque eget nunc."}}, {"model": "assets.idc", "pk": 52, "fields": {"name": "Irene White", "bandwidth": "200M", "contact": "Cynthia Elliott", "phone": "7-(987)052-3750", "address": "Milpitas89 Darwin Way", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.901Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Proin eu mi."}}, {"model": "assets.idc", "pk": 53, "fields": {"name": "Betty Gutierrez", "bandwidth": "200M", "contact": "Donna Hall", "phone": "9-(232)498-4535", "address": "Studio City37291 Waubesa Plaza", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.903Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Aenean lectus."}}, {"model": "assets.idc", "pk": 54, "fields": {"name": "Gloria Myers", "bandwidth": "200M", "contact": "Alice Cole", "phone": "9-(671)737-8987", "address": "Colton78 Almo Way", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.904Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Praesent lectus."}}, {"model": "assets.idc", "pk": 55, "fields": {"name": "Rebecca Stanley", "bandwidth": "200M", "contact": "Annie Murray", "phone": "9-(361)405-3699", "address": "Grover Beach4921 Little Fleur Drive", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.906Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Mauris sit amet eros."}}, {"model": "assets.idc", "pk": 56, "fields": {"name": "Dorothy Fox", "bandwidth": "200M", "contact": "Christina Butler", "phone": "2-(485)703-7811", "address": "Pinole8 Maywood Pass", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.908Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante."}}, {"model": "assets.idc", "pk": 57, "fields": {"name": "Carol Warren", "bandwidth": "200M", "contact": "Sharon Richards", "phone": "0-(693)292-0574", "address": "Farmersville5 Graedel Drive", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.910Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Donec semper sapien a libero."}}, {"model": "assets.idc", "pk": 58, "fields": {"name": "Brenda Gonzalez", "bandwidth": "200M", "contact": "Sharon Gordon", "phone": "9-(216)331-8575", "address": "San Luis Obispo89254 Buena Vista Drive", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.912Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Fusce posuere felis sed lacus."}}, {"model": "assets.idc", "pk": 59, "fields": {"name": "Sandra Long", "bandwidth": "200M", "contact": "Julia West", "phone": "2-(329)877-9532", "address": "Orland692 Holy Cross Court", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.913Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci."}}, {"model": "assets.idc", "pk": 60, "fields": {"name": "Laura Flores", "bandwidth": "200M", "contact": "Lillian Mcdonald", "phone": "4-(738)591-7874", "address": "Portola Valley27 Donald Plaza", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.915Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nam nulla."}}, {"model": "assets.idc", "pk": 61, "fields": {"name": "Janet Ward", "bandwidth": "200M", "contact": "Paula Hayes", "phone": "6-(042)994-3055", "address": "Calabasas26153 Westport Crossing", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.917Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum sed magna at nunc commodo placerat."}}, {"model": "assets.idc", "pk": 62, "fields": {"name": "Jacqueline Warren", "bandwidth": "200M", "contact": "Gloria Warren", "phone": "4-(838)513-9148", "address": "Hawaiian Gardens23 Sycamore Drive", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.919Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Curabitur convallis."}}, {"model": "assets.idc", "pk": 63, "fields": {"name": "Phyllis Jordan", "bandwidth": "200M", "contact": "Diane Torres", "phone": "9-(201)528-0082", "address": "Ferndale90 Debra Place", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.921Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Integer non velit."}}, {"model": "assets.idc", "pk": 64, "fields": {"name": "Andrea Grant", "bandwidth": "200M", "contact": "Julia Lewis", "phone": "3-(876)639-2477", "address": "Maywood38257 Maywood Avenue", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.922Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Duis at velit eu est congue elementum."}}, {"model": "assets.idc", "pk": 65, "fields": {"name": "Rose Ruiz", "bandwidth": "200M", "contact": "Lisa Watson", "phone": "6-(128)481-0698", "address": "Redwood City7 Schmedeman Road", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.923Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus."}}, {"model": "assets.idc", "pk": 66, "fields": {"name": "Jacqueline Porter", "bandwidth": "200M", "contact": "Pamela Kelley", "phone": "7-(990)686-8179", "address": "Davis60 Thackeray Parkway", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.925Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nulla ac enim."}}, {"model": "assets.idc", "pk": 67, "fields": {"name": "Ruth Montgomery", "bandwidth": "200M", "contact": "Ruby Marshall", "phone": "7-(981)337-2546", "address": "Azusa79310 Dryden Trail", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.927Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "In sagittis dui vel nisl."}}, {"model": "assets.idc", "pk": 68, "fields": {"name": "Shirley Ferguson", "bandwidth": "200M", "contact": "Margaret Fields", "phone": "2-(783)361-5746", "address": "Sutter Creek85 Fairfield Drive", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.929Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Praesent lectus."}}, {"model": "assets.idc", "pk": 69, "fields": {"name": "Nicole Parker", "bandwidth": "200M", "contact": "Brenda Edwards", "phone": "6-(333)659-4826", "address": "Downey216 Longview Street", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.931Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Suspendisse potenti."}}, {"model": "assets.idc", "pk": 70, "fields": {"name": "Kimberly Russell", "bandwidth": "200M", "contact": "Alice Hill", "phone": "0-(293)927-4889", "address": "Hawthorne0 Mosinee Court", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.932Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Integer tincidunt ante vel ipsum."}}, {"model": "assets.idc", "pk": 71, "fields": {"name": "Andrea Jacobs", "bandwidth": "200M", "contact": "Stephanie Day", "phone": "7-(086)809-9681", "address": "La Mirada52781 New Castle Place", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.934Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "In eleifend quam a odio."}}, {"model": "assets.idc", "pk": 72, "fields": {"name": "Amanda Jackson", "bandwidth": "200M", "contact": "Linda Miller", "phone": "3-(978)689-6043", "address": "Citrus Heights35 Graedel Hill", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.936Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Morbi ut odio."}}, {"model": "assets.idc", "pk": 73, "fields": {"name": "Louise Fields", "bandwidth": "200M", "contact": "Wanda Peterson", "phone": "9-(512)864-4649", "address": "San Diego74 Westport Place", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.938Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Aenean fermentum."}}, {"model": "assets.idc", "pk": 74, "fields": {"name": "Janet Murray", "bandwidth": "200M", "contact": "Sara Williams", "phone": "8-(879)484-5554", "address": "Calistoga1023 Susan Way", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.940Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Etiam justo."}}, {"model": "assets.idc", "pk": 75, "fields": {"name": "Bonnie Berry", "bandwidth": "200M", "contact": "Pamela Montgomery", "phone": "7-(587)471-5818", "address": "San Marino713 Anniversary Road", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.941Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Mauris ullamcorper purus sit amet nulla."}}, {"model": "assets.idc", "pk": 76, "fields": {"name": "Cynthia Stevens", "bandwidth": "200M", "contact": "Tina Smith", "phone": "0-(857)252-4544", "address": "San Diego348 East Street", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.943Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Morbi non quam nec dui luctus rutrum."}}, {"model": "assets.idc", "pk": 77, "fields": {"name": "Lillian Kennedy", "bandwidth": "200M", "contact": "Virginia Burton", "phone": "0-(144)952-1550", "address": "Walnut1069 Arkansas Terrace", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.945Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam."}}, {"model": "assets.idc", "pk": 78, "fields": {"name": "Ruth Robertson", "bandwidth": "200M", "contact": "Susan Morrison", "phone": "3-(760)524-6699", "address": "Trinidad043 Vahlen Point", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.946Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo."}}, {"model": "assets.idc", "pk": 79, "fields": {"name": "Cynthia Fernandez", "bandwidth": "200M", "contact": "Christina Howard", "phone": "2-(615)939-1022", "address": "Lodi1740 Ridgeway Terrace", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.949Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum ac est lacinia nisi venenatis tristique."}}, {"model": "assets.idc", "pk": 80, "fields": {"name": "Denise Lopez", "bandwidth": "200M", "contact": "Amy Spencer", "phone": "6-(705)880-4157", "address": "Chula Vista4396 Golf Course Plaza", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.951Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Morbi vel lectus in quam fringilla rhoncus."}}, {"model": "assets.idc", "pk": 81, "fields": {"name": "Julie Gomez", "bandwidth": "200M", "contact": "Denise Griffin", "phone": "0-(193)258-5116", "address": "Weed67381 Valley Edge Road", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.953Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Integer non velit."}}, {"model": "assets.idc", "pk": 82, "fields": {"name": "Cynthia Lopez", "bandwidth": "200M", "contact": "Evelyn Elliott", "phone": "2-(876)854-1072", "address": "San Juan Bautista2165 Northridge Street", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.954Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Nulla tempus."}}, {"model": "assets.idc", "pk": 83, "fields": {"name": "Katherine Simmons", "bandwidth": "200M", "contact": "Cheryl Burton", "phone": "8-(686)179-3765", "address": "Walnut719 Nobel Trail", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.956Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Fusce posuere felis sed lacus."}}, {"model": "assets.idc", "pk": 84, "fields": {"name": "Denise Burke", "bandwidth": "200M", "contact": "Julia Greene", "phone": "0-(882)410-5635", "address": "Ontario53 Prentice Hill", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.958Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam."}}, {"model": "assets.idc", "pk": 85, "fields": {"name": "Susan Ryan", "bandwidth": "200M", "contact": "Annie Robertson", "phone": "4-(289)334-9104", "address": "Red Bluff6019 Maywood Circle", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.960Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Aenean sit amet justo."}}, {"model": "assets.idc", "pk": 86, "fields": {"name": "Marie Dunn", "bandwidth": "200M", "contact": "Donna Lopez", "phone": "6-(479)409-3049", "address": "Pacific Grove138 Banding Center", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.961Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Morbi vel lectus in quam fringilla rhoncus."}}, {"model": "assets.idc", "pk": 87, "fields": {"name": "Sandra Richardson", "bandwidth": "200M", "contact": "Denise Ford", "phone": "3-(027)851-1287", "address": "King City61 Pankratz Terrace", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.963Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Aenean fermentum."}}, {"model": "assets.idc", "pk": 88, "fields": {"name": "Kelly Tucker", "bandwidth": "200M", "contact": "Patricia Ruiz", "phone": "4-(597)539-9418", "address": "Beverly Hills26893 1st Parkway", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.965Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Donec semper sapien a libero."}}, {"model": "assets.idc", "pk": 89, "fields": {"name": "Tina Roberts", "bandwidth": "200M", "contact": "Laura Hughes", "phone": "6-(932)236-1859", "address": "West Covina450 Delladonna Hill", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.966Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.idc", "pk": 90, "fields": {"name": "Linda Owens", "bandwidth": "200M", "contact": "Norma Dixon", "phone": "0-(586)362-3812", "address": "Ceres72 Surrey Hill", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.968Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "Aenean sit amet justo."}}, {"model": "assets.idc", "pk": 91, "fields": {"name": "Heather Coleman", "bandwidth": "200M", "contact": "Sarah Schmidt", "phone": "1-(042)372-9699", "address": "Amador City57 Schmedeman Center", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.970Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Praesent blandit."}}, {"model": "assets.idc", "pk": 92, "fields": {"name": "Katherine Hart", "bandwidth": "200M", "contact": "Judy Martinez", "phone": "6-(125)701-6034", "address": "Hemet2364 Lakeland Way", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.972Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nunc purus."}}, {"model": "assets.idc", "pk": 93, "fields": {"name": "Doris Freeman", "bandwidth": "200M", "contact": "Annie Reyes", "phone": "8-(060)927-4284", "address": "Davis1834 Declaration Center", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.975Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Aenean fermentum."}}, {"model": "assets.idc", "pk": 94, "fields": {"name": "Tina Pierce", "bandwidth": "200M", "contact": "Jennifer Cox", "phone": "8-(762)514-9531", "address": "Trinidad638 Jackson Pass", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.977Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Curabitur at ipsum ac tellus semper interdum."}}, {"model": "assets.idc", "pk": 95, "fields": {"name": "Gloria Walker", "bandwidth": "200M", "contact": "Barbara Peterson", "phone": "3-(368)003-3984", "address": "Beverly Hills06591 Valley Edge Junction", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.978Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Donec ut dolor."}}, {"model": "assets.idc", "pk": 96, "fields": {"name": "Nancy Reid", "bandwidth": "200M", "contact": "Donna Mcdonald", "phone": "2-(491)869-0997", "address": "Gilroy93 Garrison Way", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.980Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.idc", "pk": 97, "fields": {"name": "Judy White", "bandwidth": "200M", "contact": "Denise Russell", "phone": "3-(665)668-4197", "address": "Calipatria8 Carberry Circle", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.982Z", "operator": "BGP\u5168\u7f51\u901a", "created_by": "Fake", "comment": "Nulla tempus."}}, {"model": "assets.idc", "pk": 98, "fields": {"name": "Rachel Taylor", "bandwidth": "200M", "contact": "Rachel Nelson", "phone": "3-(507)131-3666", "address": "Chino Hills14 Anthes Center", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.984Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Proin eu mi."}}, {"model": "assets.idc", "pk": 99, "fields": {"name": "Linda Carroll", "bandwidth": "200M", "contact": "Elizabeth Hansen", "phone": "0-(215)147-9068", "address": "Merced6015 Oak Court", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.985Z", "operator": "\u5317\u4eac\u7535\u4fe1", "created_by": "Fake", "comment": "In sagittis dui vel nisl."}}, {"model": "assets.idc", "pk": 100, "fields": {"name": "Margaret Morris", "bandwidth": "200M", "contact": "Melissa Martinez", "phone": "9-(886)438-1186", "address": "Solvang79 South Place", "intranet": "", "extranet": "", "date_created": "2017-01-07T12:54:14.987Z", "operator": "\u5317\u4eac\u8054\u901a", "created_by": "Fake", "comment": "Morbi a ipsum."}}, {"model": "assets.adminuser", "pk": 1, "fields": {"name": "Judith Robinson", "username": "ruth", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hdHRpcyI.5Sp7NUJKOQNxv-1xJ-zA3A3pUkl2vnOfD3Z5g9LiFtQ", "_private_key": null, "_public_key": "", "comment": "Curabitur convallis.", "date_created": "2017-01-07T12:54:15.188Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 2, "fields": {"name": "Emily Davis", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1aXMi.sr0cWp1ZfjO1QWimGNuf1x_MHaNsiEFy7_UxzlJkIfY", "_private_key": null, "_public_key": "", "comment": "Nam tristique tortor eu pede.", "date_created": "2017-01-07T12:54:15.201Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 3, "fields": {"name": "Donna Griffin", "username": "denise", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV1Ig.k74Kbv7It_-9OcFde0stLpx06suYL5M71w_MTMaDa9M", "_private_key": null, "_public_key": "", "comment": "Vestibulum sed magna at nunc commodo placerat.", "date_created": "2017-01-07T12:54:15.209Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 4, "fields": {"name": "Lillian Ryan", "username": "pamela", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxvYm9ydGlzIg.RKcewrE2glcmJtRtDpTt8WptvFfwUjhUDMlcdl1Shuw", "_private_key": null, "_public_key": "", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "date_created": "2017-01-07T12:54:15.213Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 5, "fields": {"name": "Lillian Fisher", "username": "tina", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0aWFtIg.QEs0SICruIrhYPzqpEG9iKLje7wzoW601XZyyGFsWnk", "_private_key": null, "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2017-01-07T12:54:15.215Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 6, "fields": {"name": "Frances Little", "username": "donna", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlZCI.8x8y146cvv6phwCp2Q53l_zeUmW1oZkRrbMZG3kbs3w", "_private_key": null, "_public_key": "", "comment": "Nulla justo.", "date_created": "2017-01-07T12:54:15.216Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 7, "fields": {"name": "Emily Carroll", "username": "nancy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImR1aXMi.KS4EioZYRU2pQ7fIKt0kMbzHNljZMDpfMtimVI_Vjxw", "_private_key": null, "_public_key": "", "comment": "Cras non velit nec nisi vulputate nonummy.", "date_created": "2017-01-07T12:54:15.218Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 8, "fields": {"name": "Margaret Hill", "username": "anne", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlbGxlbnRlc3F1ZSI.3yrIK8gbDmlyR-M0hLUJmm7e0Tqrq3F-2hfrwlnJXQ8", "_private_key": null, "_public_key": "", "comment": "Etiam pretium iaculis justo.", "date_created": "2017-01-07T12:54:15.220Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 9, "fields": {"name": "Carol Ward", "username": "sara", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "_private_key": null, "_public_key": "", "comment": "Suspendisse ornare consequat lectus.", "date_created": "2017-01-07T12:54:15.222Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 10, "fields": {"name": "Annie Jones", "username": "dorothy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyb3Mi.u6zpIQpfh7cgPYmscg5N0W9W6cx274KgMtp0pz5_OlY", "_private_key": null, "_public_key": "", "comment": "In hac habitasse platea dictumst.", "date_created": "2017-01-07T12:54:15.224Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 11, "fields": {"name": "Theresa Hall", "username": "kelly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF0Ig.KKCMSzsOJLvrGcheEd9SDxRwZhts01BoZ0xyuxHx4Y0", "_private_key": null, "_public_key": "", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla.", "date_created": "2017-01-07T12:54:15.226Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 12, "fields": {"name": "Martha King", "username": "beverly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxhY2luaWEi.k2d8p0z-xevNN7wP2FDZiOuHFRhIiL-MVOtmCJI4vA8", "_private_key": null, "_public_key": "", "comment": "Nunc purus.", "date_created": "2017-01-07T12:54:15.227Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 13, "fields": {"name": "Heather Brooks", "username": "carol", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "_private_key": null, "_public_key": "", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "date_created": "2017-01-07T12:54:15.229Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 14, "fields": {"name": "Beverly Bryant", "username": "elizabeth", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "_private_key": null, "_public_key": "", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "date_created": "2017-01-07T12:54:15.231Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 15, "fields": {"name": "Ruth Cole", "username": "kelly", "_password": "eyJhbGciOiJIUzI1NiJ9.InJpZGljdWx1cyI.qz9Ndt8Jw7Ip8Jg6HzArFfESopFFuiHJEUrXJKWkC-M", "_private_key": null, "_public_key": "", "comment": "Maecenas rhoncus aliquam lacus.", "date_created": "2017-01-07T12:54:15.233Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 16, "fields": {"name": "Kathleen Perry", "username": "sara", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "_private_key": null, "_public_key": "", "comment": "Mauris sit amet eros.", "date_created": "2017-01-07T12:54:15.235Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 17, "fields": {"name": "Margaret Ruiz", "username": "amy", "_password": "eyJhbGciOiJIUzI1NiJ9.InV0Ig.lmRSuoHi4jv9YOiKOSfPjnCwSvHOnUh0UQcZXnEWZzo", "_private_key": null, "_public_key": "", "comment": "Morbi non quam nec dui luctus rutrum.", "date_created": "2017-01-07T12:54:15.236Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 18, "fields": {"name": "Mary Burns", "username": "angela", "_password": "eyJhbGciOiJIUzI1NiJ9.InN1c2NpcGl0Ig.Z61mFiu2oDhYJjR0Be_bppgWlu5yNIbatQroqyG17Hc", "_private_key": null, "_public_key": "", "comment": "Phasellus sit amet erat.", "date_created": "2017-01-07T12:54:15.238Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 19, "fields": {"name": "Diane Peters", "username": "evelyn", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlZCI.8x8y146cvv6phwCp2Q53l_zeUmW1oZkRrbMZG3kbs3w", "_private_key": null, "_public_key": "", "comment": "In est risus, auctor sed, tristique in, tempus sit amet, sem.", "date_created": "2017-01-07T12:54:15.240Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 20, "fields": {"name": "Judith Ortiz", "username": "lisa", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbmVuYXRpcyI.MHDovdAZ1Y6dl56pKsuIia06fJzbbnMAg6H7y3IQHcE", "_private_key": null, "_public_key": "", "comment": "Nullam porttitor lacus at turpis.", "date_created": "2017-01-07T12:54:15.241Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 21, "fields": {"name": "Helen Griffin", "username": "amanda", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "_private_key": null, "_public_key": "", "comment": "Sed sagittis.", "date_created": "2017-01-07T12:54:15.243Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 22, "fields": {"name": "Irene Vasquez", "username": "susan", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF0Ig.KKCMSzsOJLvrGcheEd9SDxRwZhts01BoZ0xyuxHx4Y0", "_private_key": null, "_public_key": "", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "date_created": "2017-01-07T12:54:15.245Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 23, "fields": {"name": "Michelle Lawrence", "username": "theresa", "_password": "eyJhbGciOiJIUzI1NiJ9.InJob25jdXMi.zc47wfesB5fcJ-oBaHagDTV8j2ml3oDL---yZnXFmX4", "_private_key": null, "_public_key": "", "comment": "In hac habitasse platea dictumst.", "date_created": "2017-01-07T12:54:15.247Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 24, "fields": {"name": "Carolyn Mitchell", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "_private_key": null, "_public_key": "", "comment": "Curabitur at ipsum ac tellus semper interdum.", "date_created": "2017-01-07T12:54:15.249Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 25, "fields": {"name": "Amanda Arnold", "username": "ashley", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "_private_key": null, "_public_key": "", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "date_created": "2017-01-07T12:54:15.250Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 26, "fields": {"name": "Carolyn Patterson", "username": "dorothy", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2VzIg.7CaOCTzCJiIrdVZn5wu5ObQCcCWGmdmgQLjfJvP7IQY", "_private_key": null, "_public_key": "", "comment": "In congue.", "date_created": "2017-01-07T12:54:15.252Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 27, "fields": {"name": "Alice Gibson", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImdyYXZpZGEi.c9OsjuqjuaeTY5RzjeR_FkUfemkuWfqcrHLr1nI4hAI", "_private_key": null, "_public_key": "", "comment": "Nullam varius.", "date_created": "2017-01-07T12:54:15.254Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 28, "fields": {"name": "Sharon Edwards", "username": "sharon", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVsaXQi.a7GlyHrv2neaOA77QcRbPfCEGs0UbmGyg9cV3trKSCg", "_private_key": null, "_public_key": "", "comment": "Proin at turpis a pede posuere nonummy.", "date_created": "2017-01-07T12:54:15.256Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 29, "fields": {"name": "Louise Cole", "username": "lori", "_password": "eyJhbGciOiJIUzI1NiJ9.InV0Ig.lmRSuoHi4jv9YOiKOSfPjnCwSvHOnUh0UQcZXnEWZzo", "_private_key": null, "_public_key": "", "comment": "Donec quis orci eget orci vehicula condimentum.", "date_created": "2017-01-07T12:54:15.258Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 30, "fields": {"name": "Julia Nichols", "username": "mary", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpY3R1bXN0Ig.owyqiwsx1v5W-7FCwPxXX8ieVl7N7sILLI3SaGMXdn8", "_private_key": null, "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2017-01-07T12:54:15.259Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 31, "fields": {"name": "Christine Price", "username": "theresa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnNlY3RldHVlciI.TzWrjty_1MomQ90WvTAEYz3Ypaemo4ROSK2xWJjBEbc", "_private_key": null, "_public_key": "", "comment": "Etiam pretium iaculis justo.", "date_created": "2017-01-07T12:54:15.261Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 32, "fields": {"name": "Helen Montgomery", "username": "alice", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9kaW8i.1qhr1N7Gn0TJEa_Q7rIWvOTqqMKwFcHXP7BomzX7J7Q", "_private_key": null, "_public_key": "", "comment": "Vivamus tortor.", "date_created": "2017-01-07T12:54:15.262Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 33, "fields": {"name": "Lisa Weaver", "username": "angela", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "_private_key": null, "_public_key": "", "comment": "Integer tincidunt ante vel ipsum.", "date_created": "2017-01-07T12:54:15.265Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 34, "fields": {"name": "Sara Fuller", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.InBhcnR1cmllbnQi.pCsDxJQrN4csmBF4750zGwoownJc2TTeODOOlSY7sz4", "_private_key": null, "_public_key": "", "comment": "Fusce consequat.", "date_created": "2017-01-07T12:54:15.266Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 35, "fields": {"name": "Denise Young", "username": "ruby", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1YW0i.jyCCTLkqnAmQ1fjCgxcCdDDxYQhwb20VCeJO2dN0I-s", "_private_key": null, "_public_key": "", "comment": "In congue.", "date_created": "2017-01-07T12:54:15.269Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 36, "fields": {"name": "Laura Alexander", "username": "nancy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImEi.DmKqiccrpBqvmrAyHjGrnQCuTR7H-csji_L5NxeelbM", "_private_key": null, "_public_key": "", "comment": "Nulla tempus.", "date_created": "2017-01-07T12:54:15.270Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 37, "fields": {"name": "Carolyn Hernandez", "username": "mildred", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjIg.m7atEKEFx68VZmM2clat-RyHmCQmR0lrKJ2VrzecInw", "_private_key": null, "_public_key": "", "comment": "Sed accumsan felis.", "date_created": "2017-01-07T12:54:15.272Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 38, "fields": {"name": "Cynthia Morales", "username": "elizabeth", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "_private_key": null, "_public_key": "", "comment": "Proin at turpis a pede posuere nonummy.", "date_created": "2017-01-07T12:54:15.274Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 39, "fields": {"name": "Andrea Bailey", "username": "barbara", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFtZXQi.k9EjNQL559Kyrp0ygulJ1FYqzM9PWKz9BZ7NqyeyH2o", "_private_key": null, "_public_key": "", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "date_created": "2017-01-07T12:54:15.276Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 40, "fields": {"name": "Angela Cruz", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9yY2ki.-H3gNP0GV0UZFR_MqKCCWMiaRDBQRRkfHxX2uojMk74", "_private_key": null, "_public_key": "", "comment": "Vestibulum sed magna at nunc commodo placerat.", "date_created": "2017-01-07T12:54:15.278Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 41, "fields": {"name": "Debra Meyer", "username": "teresa", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlZGUi.VNfxhauAGiZelQ34CO0YMVbRtgnIiH5Z-vY1jjYXhWA", "_private_key": null, "_public_key": "", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "date_created": "2017-01-07T12:54:15.279Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 42, "fields": {"name": "Rachel Thompson", "username": "louise", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5lYyI.LKXtwRVgPGpIFsCWDaqgz1FeQ0uuEIthkh3bbD8r6bI", "_private_key": null, "_public_key": "", "comment": "Pellentesque at nulla.", "date_created": "2017-01-07T12:54:15.281Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 43, "fields": {"name": "Nancy Willis", "username": "ruby", "_password": "eyJhbGciOiJIUzI1NiJ9.InVsdHJpY2VzIg.7CaOCTzCJiIrdVZn5wu5ObQCcCWGmdmgQLjfJvP7IQY", "_private_key": null, "_public_key": "", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.", "date_created": "2017-01-07T12:54:15.282Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 44, "fields": {"name": "Emily Coleman", "username": "rose", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vbnRlcyI.U9-mPLi3PtAqPA0X37T_EcxCjKiiMYB8waKn_zTTLqI", "_private_key": null, "_public_key": "", "comment": "In congue.", "date_created": "2017-01-07T12:54:15.284Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 45, "fields": {"name": "Wanda Collins", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVzdCI.kqn80ndZDQ0Gc7AnT112KsF2joNDpppfPsuPxS6cOwk", "_private_key": null, "_public_key": "", "comment": "Vivamus vel nulla eget eros elementum pellentesque.", "date_created": "2017-01-07T12:54:15.286Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 46, "fields": {"name": "Janice Bennett", "username": "joan", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFsaXF1YW0i.ROd2JUuL9lh3hBqwH2HJ7tf8zsYXtJR776EsV1Jpvnw", "_private_key": null, "_public_key": "", "comment": "Duis consequat dui nec nisi volutpat eleifend.", "date_created": "2017-01-07T12:54:15.289Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 47, "fields": {"name": "Lisa Morales", "username": "lois", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "_private_key": null, "_public_key": "", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "date_created": "2017-01-07T12:54:15.291Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 48, "fields": {"name": "Dorothy Taylor", "username": "lisa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVuaW0i.G3tfpkWpHaXsDj426yogQKH9WMk4-ONIo66sphs2Dgs", "_private_key": null, "_public_key": "", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "date_created": "2017-01-07T12:54:15.293Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 49, "fields": {"name": "Shirley Wright", "username": "melissa", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlaGljdWxhIg.24RL7x_K4-FG6MSYl7ekdNgShs6FvH2AA0I4gSogttU", "_private_key": null, "_public_key": "", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.", "date_created": "2017-01-07T12:54:15.296Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 50, "fields": {"name": "Rachel Howard", "username": "denise", "_password": "eyJhbGciOiJIUzI1NiJ9.InBoYXNlbGx1cyI.Zn-tLzwjTOOALDdNqorcCv8dpUlJWwDa8PhPqRVfR7s", "_private_key": null, "_public_key": "", "comment": "Mauris sit amet eros.", "date_created": "2017-01-07T12:54:15.298Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 51, "fields": {"name": "Diana Price", "username": "laura", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "_private_key": null, "_public_key": "", "comment": "Ut tellus.", "date_created": "2017-01-07T12:54:15.300Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 52, "fields": {"name": "Denise Gutierrez", "username": "mary", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9kaW8i.1qhr1N7Gn0TJEa_Q7rIWvOTqqMKwFcHXP7BomzX7J7Q", "_private_key": null, "_public_key": "", "comment": "Aliquam erat volutpat.", "date_created": "2017-01-07T12:54:15.302Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 53, "fields": {"name": "Joan Turner", "username": "janice", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvdGVudGki.gVzkkI6p2yD2ovfIZrG88LPZYqWz3jIhPNRkRx2okDw", "_private_key": null, "_public_key": "", "comment": "In eleifend quam a odio.", "date_created": "2017-01-07T12:54:15.304Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 54, "fields": {"name": "Dorothy Coleman", "username": "cheryl", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hdXJpcyI.jcR8xjLt9WrET56Nes7q2CdkHYJAWb7Y2d--saQSumY", "_private_key": null, "_public_key": "", "comment": "Nullam molestie nibh in lectus.", "date_created": "2017-01-07T12:54:15.306Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 55, "fields": {"name": "Linda Webb", "username": "jacqueline", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hdXJpcyI.jcR8xjLt9WrET56Nes7q2CdkHYJAWb7Y2d--saQSumY", "_private_key": null, "_public_key": "", "comment": "Duis aliquam convallis nunc.", "date_created": "2017-01-07T12:54:15.308Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 56, "fields": {"name": "Tina Scott", "username": "teresa", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlbGxlbnRlc3F1ZSI.3yrIK8gbDmlyR-M0hLUJmm7e0Tqrq3F-2hfrwlnJXQ8", "_private_key": null, "_public_key": "", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.", "date_created": "2017-01-07T12:54:15.310Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 57, "fields": {"name": "Susan Holmes", "username": "jane", "_password": "eyJhbGciOiJIUzI1NiJ9.InJpZGljdWx1cyI.qz9Ndt8Jw7Ip8Jg6HzArFfESopFFuiHJEUrXJKWkC-M", "_private_key": null, "_public_key": "", "comment": "Maecenas pulvinar lobortis est.", "date_created": "2017-01-07T12:54:15.312Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 58, "fields": {"name": "Sandra Fields", "username": "helen", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1YW0i.jyCCTLkqnAmQ1fjCgxcCdDDxYQhwb20VCeJO2dN0I-s", "_private_key": null, "_public_key": "", "comment": "Integer ac leo.", "date_created": "2017-01-07T12:54:15.314Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 59, "fields": {"name": "Joyce Mills", "username": "stephanie", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bmMi.QZCxEf3ITmu1xFtZxZL7B-kLe61BCyaRJg_ryZUsHdw", "_private_key": null, "_public_key": "", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "date_created": "2017-01-07T12:54:15.316Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 60, "fields": {"name": "Alice Davis", "username": "linda", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlhY3VsaXMi._s5XG4x4ntDRnnbi38JeFne1fvF3h3f9nQJRUGL_vq0", "_private_key": null, "_public_key": "", "comment": "Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo.", "date_created": "2017-01-07T12:54:15.318Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 61, "fields": {"name": "Kathryn Young", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0Ig.3tldwz4uRFsW0n3fXSzg--EVXWaEWcxAmrwA76gZUYA", "_private_key": null, "_public_key": "", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "date_created": "2017-01-07T12:54:15.320Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 62, "fields": {"name": "Alice Rivera", "username": "karen", "_password": "eyJhbGciOiJIUzI1NiJ9.ImR1aSI.AYqnix4dp06WLJ645L4MAveLycKVrZSyNjJnIq0fU2g", "_private_key": null, "_public_key": "", "comment": "Vestibulum rutrum rutrum neque.", "date_created": "2017-01-07T12:54:15.321Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 63, "fields": {"name": "Deborah Gordon", "username": "doris", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "_private_key": null, "_public_key": "", "comment": "Duis at velit eu est congue elementum.", "date_created": "2017-01-07T12:54:15.323Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 64, "fields": {"name": "Rose Flores", "username": "martha", "_password": "eyJhbGciOiJIUzI1NiJ9.ImN1cnN1cyI.9mxH1HpaEaQw85lLa7DsTGky0cMIfTCNruY1ev1QuNw", "_private_key": null, "_public_key": "", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.", "date_created": "2017-01-07T12:54:15.325Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 65, "fields": {"name": "Louise Harvey", "username": "elizabeth", "_password": "eyJhbGciOiJIUzI1NiJ9.ImhhYyI.NqFq8iVrrba9qnYT02so-eAKvqMQUN0EXT1JGPAf-EE", "_private_key": null, "_public_key": "", "comment": "Pellentesque viverra pede ac diam.", "date_created": "2017-01-07T12:54:15.327Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 66, "fields": {"name": "Sharon Welch", "username": "christina", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "_private_key": null, "_public_key": "", "comment": "Nulla ac enim.", "date_created": "2017-01-07T12:54:15.329Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 67, "fields": {"name": "Gloria Hunt", "username": "diana", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "_private_key": null, "_public_key": "", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "date_created": "2017-01-07T12:54:15.331Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 68, "fields": {"name": "Bonnie Anderson", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImhlbmRyZXJpdCI.w37x36SBpiyhDWKVAtj2fw-T7HIkb-qBU5LHWA03DMY", "_private_key": null, "_public_key": "", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "date_created": "2017-01-07T12:54:15.333Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 69, "fields": {"name": "Emily Baker", "username": "julie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "_private_key": null, "_public_key": "", "comment": "Phasellus in felis.", "date_created": "2017-01-07T12:54:15.334Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 70, "fields": {"name": "Joan Harvey", "username": "andrea", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF1Z3VlIg.crP2_jl_o91zD62WaHCevBI_9ScRk6cXhXtPdAVGOYQ", "_private_key": null, "_public_key": "", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "date_created": "2017-01-07T12:54:15.336Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 71, "fields": {"name": "Lois Martin", "username": "theresa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImludGVyZHVtIg.UHlxBZLjoTZbl5ZIhbnQ1sBwbWSntPA0eH2R4BQWoB0", "_private_key": null, "_public_key": "", "comment": "Vivamus in felis eu sapien cursus vestibulum.", "date_created": "2017-01-07T12:54:15.338Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 72, "fields": {"name": "Sandra Carroll", "username": "rose", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hdXJpcyI.jcR8xjLt9WrET56Nes7q2CdkHYJAWb7Y2d--saQSumY", "_private_key": null, "_public_key": "", "comment": "Donec dapibus.", "date_created": "2017-01-07T12:54:15.340Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 73, "fields": {"name": "Lois Marshall", "username": "maria", "_password": "eyJhbGciOiJIUzI1NiJ9.Imp1c3RvIg.OGeg0BhoHWufHxSObxdYqHFC3zur8llMFj8veLxbAFY", "_private_key": null, "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "date_created": "2017-01-07T12:54:15.342Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 74, "fields": {"name": "Sara Gonzalez", "username": "ann", "_password": "eyJhbGciOiJIUzI1NiJ9.InZpdmFtdXMi.RbLbJ7X5YWe_D8gaSitbKfO_QqGVcW4iUu3TYdjIPKI", "_private_key": null, "_public_key": "", "comment": "Donec ut dolor.", "date_created": "2017-01-07T12:54:15.344Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 75, "fields": {"name": "Julie Hamilton", "username": "dorothy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF1Z3VlIg.crP2_jl_o91zD62WaHCevBI_9ScRk6cXhXtPdAVGOYQ", "_private_key": null, "_public_key": "", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla.", "date_created": "2017-01-07T12:54:15.346Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 76, "fields": {"name": "Debra Baker", "username": "cheryl", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "_private_key": null, "_public_key": "", "comment": "Nulla mollis molestie lorem.", "date_created": "2017-01-07T12:54:15.347Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 77, "fields": {"name": "Susan Bailey", "username": "andrea", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbmVuYXRpcyI.MHDovdAZ1Y6dl56pKsuIia06fJzbbnMAg6H7y3IQHcE", "_private_key": null, "_public_key": "", "comment": "Nulla nisl.", "date_created": "2017-01-07T12:54:15.349Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 78, "fields": {"name": "Joyce Castillo", "username": "michelle", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbCI.ETImZ-BkJk0sqh2IFBILiQXV2aDn_mEZV3b-qIUDQBo", "_private_key": null, "_public_key": "", "comment": "Etiam justo.", "date_created": "2017-01-07T12:54:15.351Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 79, "fields": {"name": "Doris Snyder", "username": "helen", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1pIg.9Z3NScNPiRxvreLu8pDuhMVg8PIHs91k9_ntiUwuBPQ", "_private_key": null, "_public_key": "", "comment": "Suspendisse potenti.", "date_created": "2017-01-07T12:54:15.353Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 80, "fields": {"name": "Judith Patterson", "username": "diana", "_password": "eyJhbGciOiJIUzI1NiJ9.InV0Ig.lmRSuoHi4jv9YOiKOSfPjnCwSvHOnUh0UQcZXnEWZzo", "_private_key": null, "_public_key": "", "comment": "Morbi non quam nec dui luctus rutrum.", "date_created": "2017-01-07T12:54:15.355Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 81, "fields": {"name": "Nancy Cox", "username": "joan", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxlY3R1cyI.7T1IUgQEmo1rg4yMJ17FiAP48rzB174UhQ0vFbK15QM", "_private_key": null, "_public_key": "", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "date_created": "2017-01-07T12:54:15.357Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 82, "fields": {"name": "Kathleen Thomas", "username": "cynthia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyYXQi.DYbnQqa9aMUVtPCk3VMA6RFeUmr4NNrdvTORYTQol2s", "_private_key": null, "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "date_created": "2017-01-07T12:54:15.359Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 83, "fields": {"name": "Tammy Warren", "username": "maria", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxhY2luaWEi.k2d8p0z-xevNN7wP2FDZiOuHFRhIiL-MVOtmCJI4vA8", "_private_key": null, "_public_key": "", "comment": "Aliquam erat volutpat.", "date_created": "2017-01-07T12:54:15.361Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 84, "fields": {"name": "Julie Medina", "username": "diane", "_password": "eyJhbGciOiJIUzI1NiJ9.ImhhYyI.NqFq8iVrrba9qnYT02so-eAKvqMQUN0EXT1JGPAf-EE", "_private_key": null, "_public_key": "", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante.", "date_created": "2017-01-07T12:54:15.363Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 85, "fields": {"name": "Angela Spencer", "username": "phyllis", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hZ25hIg.n7_lEZwzxnXBn5B4uo3looqSDDSKNqXXAxpJYKKNn7c", "_private_key": null, "_public_key": "", "comment": "Cras in purus eu magna vulputate luctus.", "date_created": "2017-01-07T12:54:15.365Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 86, "fields": {"name": "Jessica Fernandez", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyYXQi.DYbnQqa9aMUVtPCk3VMA6RFeUmr4NNrdvTORYTQol2s", "_private_key": null, "_public_key": "", "comment": "In hac habitasse platea dictumst.", "date_created": "2017-01-07T12:54:15.367Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 87, "fields": {"name": "Shirley Stewart", "username": "rachel", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVsaXQi.a7GlyHrv2neaOA77QcRbPfCEGs0UbmGyg9cV3trKSCg", "_private_key": null, "_public_key": "", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "date_created": "2017-01-07T12:54:15.369Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 88, "fields": {"name": "Katherine Collins", "username": "norma", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "_private_key": null, "_public_key": "", "comment": "Maecenas pulvinar lobortis est.", "date_created": "2017-01-07T12:54:15.370Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 89, "fields": {"name": "Norma Green", "username": "diane", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "_private_key": null, "_public_key": "", "comment": "Curabitur gravida nisi at nibh.", "date_created": "2017-01-07T12:54:15.372Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 90, "fields": {"name": "Virginia Garcia", "username": "michelle", "_password": "eyJhbGciOiJIUzI1NiJ9.ImN1cmFlOyI.YXVQboZMyJCScWjZTO7GvepNEo2dJ4h46NF_lOFDXbI", "_private_key": null, "_public_key": "", "comment": "Quisque porta volutpat erat.", "date_created": "2017-01-07T12:54:15.375Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 91, "fields": {"name": "Sarah Miller", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxlY3R1cyI.7T1IUgQEmo1rg4yMJ17FiAP48rzB174UhQ0vFbK15QM", "_private_key": null, "_public_key": "", "comment": "Maecenas pulvinar lobortis est.", "date_created": "2017-01-07T12:54:15.377Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 92, "fields": {"name": "Melissa Bowman", "username": "angela", "_password": "eyJhbGciOiJIUzI1NiJ9.InV0Ig.lmRSuoHi4jv9YOiKOSfPjnCwSvHOnUh0UQcZXnEWZzo", "_private_key": null, "_public_key": "", "comment": "Pellentesque eget nunc.", "date_created": "2017-01-07T12:54:15.379Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 93, "fields": {"name": "Cynthia Palmer", "username": "stephanie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVsZWlmZW5kIg.1OHmiE1zsH9hdrR2t-pBIR6VwxS3R_fBqR18yfdOBxE", "_private_key": null, "_public_key": "", "comment": "Nulla justo.", "date_created": "2017-01-07T12:54:15.382Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 94, "fields": {"name": "Donna Henderson", "username": "sarah", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlkIg.lr9X3DQPFH2zptTUg3pRWbYLzWhfDYsw0w_q9pEod3I", "_private_key": null, "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "date_created": "2017-01-07T12:54:15.384Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 95, "fields": {"name": "Mildred Greene", "username": "anna", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyYXQi.DYbnQqa9aMUVtPCk3VMA6RFeUmr4NNrdvTORYTQol2s", "_private_key": null, "_public_key": "", "comment": "Nulla ut erat id mauris vulputate elementum.", "date_created": "2017-01-07T12:54:15.386Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 96, "fields": {"name": "Jennifer Stevens", "username": "shirley", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlbGxlbnRlc3F1ZSI.3yrIK8gbDmlyR-M0hLUJmm7e0Tqrq3F-2hfrwlnJXQ8", "_private_key": null, "_public_key": "", "comment": "Morbi non quam nec dui luctus rutrum.", "date_created": "2017-01-07T12:54:15.388Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 97, "fields": {"name": "Laura Reid", "username": "alice", "_password": "eyJhbGciOiJIUzI1NiJ9.InRyaXN0aXF1ZSI.2GYDOy1PUPlajGgk0PM4TJZASBBeOEH6rVW9bSdnlBU", "_private_key": null, "_public_key": "", "comment": "Cras non velit nec nisi vulputate nonummy.", "date_created": "2017-01-07T12:54:15.390Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 98, "fields": {"name": "Wanda Reid", "username": "paula", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bmMi.QZCxEf3ITmu1xFtZxZL7B-kLe61BCyaRJg_ryZUsHdw", "_private_key": null, "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "date_created": "2017-01-07T12:54:15.391Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 99, "fields": {"name": "Stephanie Carpenter", "username": "amy", "_password": "eyJhbGciOiJIUzI1NiJ9.InByaW1pcyI.OAlhMPsCXTLC41MGIrALVio6iqoIwHbHFj-r4Kg4lso", "_private_key": null, "_public_key": "", "comment": "Morbi vestibulum, velit id pretium iaculis, diam erat fermentum justo, nec condimentum neque sapien placerat ante.", "date_created": "2017-01-07T12:54:15.393Z", "created_by": "Fake"}}, {"model": "assets.adminuser", "pk": 100, "fields": {"name": "Sandra Wagner", "username": "jean", "_password": "eyJhbGciOiJIUzI1NiJ9.InN1c2NpcGl0Ig.Z61mFiu2oDhYJjR0Be_bppgWlu5yNIbatQroqyG17Hc", "_private_key": null, "_public_key": "", "comment": "Nulla suscipit ligula in lacus.", "date_created": "2017-01-07T12:54:15.396Z", "created_by": "Fake"}}, {"model": "assets.systemuser", "pk": 1, "fields": {"name": "Sara Kennedy", "username": "ruby", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRvbmVjIg.ETQR821NXkrnq13LeE4BygCe_fvaFDJggsQ1ghFFfNU", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:14.990Z", "created_by": "Fake", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam."}}, {"model": "assets.systemuser", "pk": 2, "fields": {"name": "Sandra Larson", "username": "rebecca", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5lYyI.LKXtwRVgPGpIFsCWDaqgz1FeQ0uuEIthkh3bbD8r6bI", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:14.992Z", "created_by": "Fake", "comment": "Sed ante."}}, {"model": "assets.systemuser", "pk": 3, "fields": {"name": "Diane Taylor", "username": "rachel", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVzdCI.kqn80ndZDQ0Gc7AnT112KsF2joNDpppfPsuPxS6cOwk", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:14.994Z", "created_by": "Fake", "comment": "Curabitur convallis."}}, {"model": "assets.systemuser", "pk": 4, "fields": {"name": "Theresa Holmes", "username": "mildred", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1aXMi.sr0cWp1ZfjO1QWimGNuf1x_MHaNsiEFy7_UxzlJkIfY", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:14.996Z", "created_by": "Fake", "comment": "Nulla ut erat id mauris vulputate elementum."}}, {"model": "assets.systemuser", "pk": 5, "fields": {"name": "Betty Daniels", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:14.997Z", "created_by": "Fake", "comment": "Proin interdum mauris non ligula pellentesque ultrices."}}, {"model": "assets.systemuser", "pk": 6, "fields": {"name": "Annie Henderson", "username": "lisa", "_password": "eyJhbGciOiJIUzI1NiJ9.InZvbHV0cGF0Ig.F7uCpzruZ4ZGBU3VNWStgVJgh0kXl9bHDicT6aRqSys", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:14.998Z", "created_by": "Fake", "comment": "Nullam varius."}}, {"model": "assets.systemuser", "pk": 7, "fields": {"name": "Deborah Rodriguez", "username": "phyllis", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbmd1ZSI.ZhepxP8sxBRKPXnwzbjVSMw55yeF3Ha3WBaajS2I78s", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.001Z", "created_by": "Fake", "comment": "In blandit ultrices enim."}}, {"model": "assets.systemuser", "pk": 8, "fields": {"name": "Katherine Green", "username": "linda", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.003Z", "created_by": "Fake", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede."}}, {"model": "assets.systemuser", "pk": 9, "fields": {"name": "Diane Lopez", "username": "rose", "_password": "eyJhbGciOiJIUzI1NiJ9.ImR1aXMi.KS4EioZYRU2pQ7fIKt0kMbzHNljZMDpfMtimVI_Vjxw", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.005Z", "created_by": "Fake", "comment": "Aliquam sit amet diam in magna bibendum imperdiet."}}, {"model": "assets.systemuser", "pk": 10, "fields": {"name": "Julie Rivera", "username": "melissa", "_password": "eyJhbGciOiJIUzI1NiJ9.InNhZ2l0dGlzIg.3Bi_u95FE3rtgZOoqk8FyFU9_pncEEajQ0EqTtOvPEc", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.007Z", "created_by": "Fake", "comment": "Ut tellus."}}, {"model": "assets.systemuser", "pk": 11, "fields": {"name": "Angela Henry", "username": "jennifer", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlZCI.8x8y146cvv6phwCp2Q53l_zeUmW1oZkRrbMZG3kbs3w", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.009Z", "created_by": "Fake", "comment": "Aenean sit amet justo."}}, {"model": "assets.systemuser", "pk": 12, "fields": {"name": "Robin Williamson", "username": "patricia", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxpYmVybyI.JSOBTsKXE5mrplDkrXESWTg_SWw6LjpAeHVtzE5__3o", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.010Z", "created_by": "Fake", "comment": "Sed accumsan felis."}}, {"model": "assets.systemuser", "pk": 13, "fields": {"name": "Carol Hudson", "username": "amanda", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1pIg.9Z3NScNPiRxvreLu8pDuhMVg8PIHs91k9_ntiUwuBPQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.012Z", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio."}}, {"model": "assets.systemuser", "pk": 14, "fields": {"name": "Kelly James", "username": "carolyn", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV1Ig.k74Kbv7It_-9OcFde0stLpx06suYL5M71w_MTMaDa9M", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.014Z", "created_by": "Fake", "comment": "Pellentesque eget nunc."}}, {"model": "assets.systemuser", "pk": 15, "fields": {"name": "Marilyn Brooks", "username": "janet", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV1Ig.k74Kbv7It_-9OcFde0stLpx06suYL5M71w_MTMaDa9M", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.016Z", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.systemuser", "pk": 16, "fields": {"name": "Annie Hernandez", "username": "louise", "_password": "eyJhbGciOiJIUzI1NiJ9.InZpdGFlIg.hgeyUub3irVAJMeHmqEr9yZ7bLM1VSZtwTsRMf3sPoI", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.018Z", "created_by": "Fake", "comment": "Fusce posuere felis sed lacus."}}, {"model": "assets.systemuser", "pk": 17, "fields": {"name": "Joyce Carpenter", "username": "rachel", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1ldHVzIg.YtPHlU3XHnhjfj2rsVVxVzOZTx_u-Jd2wWJJMarQvls", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.019Z", "created_by": "Fake", "comment": "Morbi ut odio."}}, {"model": "assets.systemuser", "pk": 18, "fields": {"name": "Cynthia Williamson", "username": "lisa", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnNlcXVhdCI.vLRDCJLof2aVuDu2Ozh-ogfuPPmKCcg9NxF47WcQqig", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.021Z", "created_by": "Fake", "comment": "Phasellus sit amet erat."}}, {"model": "assets.systemuser", "pk": 19, "fields": {"name": "Beverly Coleman", "username": "norma", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVzdCI.kqn80ndZDQ0Gc7AnT112KsF2joNDpppfPsuPxS6cOwk", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.023Z", "created_by": "Fake", "comment": "Nulla nisl."}}, {"model": "assets.systemuser", "pk": 20, "fields": {"name": "Frances Grant", "username": "karen", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjY3Vtc2FuIg.NEwnlPlaG9Pa0nEXxhV8A18g-06uqxUCQ4zExhAPf3w", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.025Z", "created_by": "Fake", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc."}}, {"model": "assets.systemuser", "pk": 21, "fields": {"name": "Jennifer Thomas", "username": "mildred", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVuaW0i.G3tfpkWpHaXsDj426yogQKH9WMk4-ONIo66sphs2Dgs", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.027Z", "created_by": "Fake", "comment": "Suspendisse ornare consequat lectus."}}, {"model": "assets.systemuser", "pk": 22, "fields": {"name": "Anne Richards", "username": "alice", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyYXQi.DYbnQqa9aMUVtPCk3VMA6RFeUmr4NNrdvTORYTQol2s", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.029Z", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.systemuser", "pk": 23, "fields": {"name": "Tina Lawrence", "username": "joan", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFyY3Ui.BiHl6wce2ufTlU5N6NKWqruNorzmlO6YypVSIuhcTN4", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.030Z", "created_by": "Fake", "comment": "Fusce consequat."}}, {"model": "assets.systemuser", "pk": 24, "fields": {"name": "Angela Fisher", "username": "rebecca", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlZCI.8x8y146cvv6phwCp2Q53l_zeUmW1oZkRrbMZG3kbs3w", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.032Z", "created_by": "Fake", "comment": "Aliquam non mauris."}}, {"model": "assets.systemuser", "pk": 25, "fields": {"name": "Sharon Rice", "username": "kimberly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnZhbGxpcyI.B_NDb4qHOmbgsEcxTJAb9xrXBHPzya03jDjrKhXztJU", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.034Z", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.systemuser", "pk": 26, "fields": {"name": "Kathy Foster", "username": "marie", "_password": "eyJhbGciOiJIUzI1NiJ9.InRpbmNpZHVudCI.nJRX3abQiMg6iUZpF2Ek_kygvgbo8fIUG4zHAh7o9n4", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.037Z", "created_by": "Fake", "comment": "Maecenas tincidunt lacus at velit."}}, {"model": "assets.systemuser", "pk": 27, "fields": {"name": "Angela Coleman", "username": "marie", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vbGVzdGllIg.3Ati0FpOQfWlYUHeXFmjZ1KOsOaAGFCSfit5ksNR9kE", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.039Z", "created_by": "Fake", "comment": "Maecenas rhoncus aliquam lacus."}}, {"model": "assets.systemuser", "pk": 28, "fields": {"name": "Pamela Hanson", "username": "sarah", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0Ig.3tldwz4uRFsW0n3fXSzg--EVXWaEWcxAmrwA76gZUYA", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.041Z", "created_by": "Fake", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla."}}, {"model": "assets.systemuser", "pk": 29, "fields": {"name": "Marie Edwards", "username": "sharon", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpY3R1bXN0Ig.owyqiwsx1v5W-7FCwPxXX8ieVl7N7sILLI3SaGMXdn8", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.042Z", "created_by": "Fake", "comment": "Duis consequat dui nec nisi volutpat eleifend."}}, {"model": "assets.systemuser", "pk": 30, "fields": {"name": "Louise Lawson", "username": "beverly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF0Ig.KKCMSzsOJLvrGcheEd9SDxRwZhts01BoZ0xyuxHx4Y0", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.045Z", "created_by": "Fake", "comment": "Duis ac nibh."}}, {"model": "assets.systemuser", "pk": 31, "fields": {"name": "Rose Perkins", "username": "brenda", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRhcGlidXMi._Z9XtQyeuJcMgqBgOxIU0eA5-OWdjiBI0ESFrIm9aYs", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.047Z", "created_by": "Fake", "comment": "Donec dapibus."}}, {"model": "assets.systemuser", "pk": 32, "fields": {"name": "Janice Nguyen", "username": "cheryl", "_password": "eyJhbGciOiJIUzI1NiJ9.InRvcnRvciI.OPG_v82TxcKyRgsGZvElzMJ5qUJRa25waGugUWsE_8U", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.048Z", "created_by": "Fake", "comment": "Pellentesque ultrices mattis odio."}}, {"model": "assets.systemuser", "pk": 33, "fields": {"name": "Deborah Mason", "username": "marilyn", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vcmJpIg.eiv33ldiYjx8DZLjUsoxipifqc1NZvZdR-xyFDq2ipc", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.050Z", "created_by": "Fake", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus."}}, {"model": "assets.systemuser", "pk": 34, "fields": {"name": "Michelle Arnold", "username": "gloria", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlbCI.ETImZ-BkJk0sqh2IFBILiQXV2aDn_mEZV3b-qIUDQBo", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.052Z", "created_by": "Fake", "comment": "Donec quis orci eget orci vehicula condimentum."}}, {"model": "assets.systemuser", "pk": 35, "fields": {"name": "Kimberly Graham", "username": "cheryl", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hc3NhIg.0T8CCFHSvP7QtFY2vdFxkhj_w0z-ty4y2EYhGhJfOUs", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.055Z", "created_by": "Fake", "comment": "Suspendisse ornare consequat lectus."}}, {"model": "assets.systemuser", "pk": 36, "fields": {"name": "Lois Webb", "username": "rebecca", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlZGUi.VNfxhauAGiZelQ34CO0YMVbRtgnIiH5Z-vY1jjYXhWA", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.058Z", "created_by": "Fake", "comment": "Cras non velit nec nisi vulputate nonummy."}}, {"model": "assets.systemuser", "pk": 37, "fields": {"name": "Theresa Ray", "username": "sara", "_password": "eyJhbGciOiJIUzI1NiJ9.ImRpY3R1bXN0Ig.owyqiwsx1v5W-7FCwPxXX8ieVl7N7sILLI3SaGMXdn8", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.060Z", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam."}}, {"model": "assets.systemuser", "pk": 38, "fields": {"name": "Rachel Walker", "username": "christina", "_password": "eyJhbGciOiJIUzI1NiJ9.InNhcGllbiI.FV7Fd4y2296g887c98VrXRInZMVQulodf4KOSrBCWog", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.062Z", "created_by": "Fake", "comment": "In blandit ultrices enim."}}, {"model": "assets.systemuser", "pk": 39, "fields": {"name": "Christina Rice", "username": "karen", "_password": "eyJhbGciOiJIUzI1NiJ9.Imlwc3VtIg.rZpQHFzRecdHsQN3Et2YmLCm6zfPo_XFOeE-vz-CLe0", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.064Z", "created_by": "Fake", "comment": "Proin risus."}}, {"model": "assets.systemuser", "pk": 40, "fields": {"name": "Ann Dixon", "username": "betty", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV0Ig.3tldwz4uRFsW0n3fXSzg--EVXWaEWcxAmrwA76gZUYA", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.066Z", "created_by": "Fake", "comment": "Fusce posuere felis sed lacus."}}, {"model": "assets.systemuser", "pk": 41, "fields": {"name": "Wanda Cooper", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.068Z", "created_by": "Fake", "comment": "Vestibulum ac est lacinia nisi venenatis tristique."}}, {"model": "assets.systemuser", "pk": 42, "fields": {"name": "Shirley Berry", "username": "ruby", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pc2wi.bGZH4pJ2wkHxRxfDvzi1ePhYmirT4ibQ-uvsullA4pE", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.070Z", "created_by": "Fake", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue."}}, {"model": "assets.systemuser", "pk": 43, "fields": {"name": "Janice Burton", "username": "helen", "_password": "eyJhbGciOiJIUzI1NiJ9.InBvc3VlcmUi.HiqInzbNn9wLyMamRM3OfwBYJ9q4n297DvZzFFDwN7w", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.072Z", "created_by": "Fake", "comment": "Nulla nisl."}}, {"model": "assets.systemuser", "pk": 44, "fields": {"name": "Anne Meyer", "username": "dorothy", "_password": "eyJhbGciOiJIUzI1NiJ9.InRlbXB1cyI.InhJYK-kSadev_OeL8065VO6arpVpq6Ns-7Qcs6WkrU", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.073Z", "created_by": "Fake", "comment": "Integer non velit."}}, {"model": "assets.systemuser", "pk": 45, "fields": {"name": "Kimberly Chavez", "username": "melissa", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hZ25hIg.n7_lEZwzxnXBn5B4uo3looqSDDSKNqXXAxpJYKKNn7c", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.075Z", "created_by": "Fake", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo."}}, {"model": "assets.systemuser", "pk": 46, "fields": {"name": "Lori Jacobs", "username": "nancy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFkaXBpc2Npbmci.xA0pKz_H20na1idlwyUjLasNezP4HEJunJ6DQfKy36U", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.078Z", "created_by": "Fake", "comment": "Vivamus in felis eu sapien cursus vestibulum."}}, {"model": "assets.systemuser", "pk": 47, "fields": {"name": "Denise Mitchell", "username": "nicole", "_password": "eyJhbGciOiJIUzI1NiJ9.InRvcnRvciI.OPG_v82TxcKyRgsGZvElzMJ5qUJRa25waGugUWsE_8U", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.080Z", "created_by": "Fake", "comment": "Donec vitae nisi."}}, {"model": "assets.systemuser", "pk": 48, "fields": {"name": "Mary Hayes", "username": "jessica", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pYmgi.xs16dvVvTgeK6P4sCntrlOibiQ6PQd9Spdj68ir-ctY", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.081Z", "created_by": "Fake", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus."}}, {"model": "assets.systemuser", "pk": 49, "fields": {"name": "Joan Harvey", "username": "alice", "_password": "eyJhbGciOiJIUzI1NiJ9.InNvbGxpY2l0dWRpbiI.CN0digeVjRpv1GVr5eUkb13I8noDlYUxEQTJIZiwA6U", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.083Z", "created_by": "Fake", "comment": "Nulla ac enim."}}, {"model": "assets.systemuser", "pk": 50, "fields": {"name": "Stephanie Lawrence", "username": "judith", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.085Z", "created_by": "Fake", "comment": "Maecenas pulvinar lobortis est."}}, {"model": "assets.systemuser", "pk": 51, "fields": {"name": "Doris Olson", "username": "sarah", "_password": "eyJhbGciOiJIUzI1NiJ9.ImxlY3R1cyI.7T1IUgQEmo1rg4yMJ17FiAP48rzB174UhQ0vFbK15QM", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.087Z", "created_by": "Fake", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus."}}, {"model": "assets.systemuser", "pk": 52, "fields": {"name": "Jean Washington", "username": "ashley", "_password": "eyJhbGciOiJIUzI1NiJ9.InNpdCI.qhSlAh3rB-ai6rdQ-gxKBSFGhk-AbwiFe_CqQxSS3hM", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.089Z", "created_by": "Fake", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus."}}, {"model": "assets.systemuser", "pk": 53, "fields": {"name": "Shirley Robertson", "username": "annie", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hdHRpcyI.5Sp7NUJKOQNxv-1xJ-zA3A3pUkl2vnOfD3Z5g9LiFtQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.091Z", "created_by": "Fake", "comment": "Duis at velit eu est congue elementum."}}, {"model": "assets.systemuser", "pk": 54, "fields": {"name": "Carol Bryant", "username": "deborah", "_password": "eyJhbGciOiJIUzI1NiJ9.InRlbXB1cyI.InhJYK-kSadev_OeL8065VO6arpVpq6Ns-7Qcs6WkrU", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.093Z", "created_by": "Fake", "comment": "In hac habitasse platea dictumst."}}, {"model": "assets.systemuser", "pk": 55, "fields": {"name": "Amy Watson", "username": "janice", "_password": "eyJhbGciOiJIUzI1NiJ9.ImlhY3VsaXMi._s5XG4x4ntDRnnbi38JeFne1fvF3h3f9nQJRUGL_vq0", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.095Z", "created_by": "Fake", "comment": "In quis justo."}}, {"model": "assets.systemuser", "pk": 56, "fields": {"name": "Judith Reynolds", "username": "cynthia", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.096Z", "created_by": "Fake", "comment": "Nam dui."}}, {"model": "assets.systemuser", "pk": 57, "fields": {"name": "Janet Nichols", "username": "ann", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFudGUi.MEBUyQoLV79tCcbpomj9Q6JdrivWra1ZLsj5UvGmRNg", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.099Z", "created_by": "Fake", "comment": "Morbi porttitor lorem id ligula."}}, {"model": "assets.systemuser", "pk": 58, "fields": {"name": "Elizabeth Lynch", "username": "andrea", "_password": "eyJhbGciOiJIUzI1NiJ9.Imp1c3RvIg.OGeg0BhoHWufHxSObxdYqHFC3zur8llMFj8veLxbAFY", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.101Z", "created_by": "Fake", "comment": "Vivamus vestibulum sagittis sapien."}}, {"model": "assets.systemuser", "pk": 59, "fields": {"name": "Sandra Welch", "username": "julia", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9yY2ki.-H3gNP0GV0UZFR_MqKCCWMiaRDBQRRkfHxX2uojMk74", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.103Z", "created_by": "Fake", "comment": "Vivamus tortor."}}, {"model": "assets.systemuser", "pk": 60, "fields": {"name": "Virginia Watkins", "username": "anna", "_password": "eyJhbGciOiJIUzI1NiJ9.InBhcnR1cmllbnQi.pCsDxJQrN4csmBF4750zGwoownJc2TTeODOOlSY7sz4", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.104Z", "created_by": "Fake", "comment": "Aenean auctor gravida sem."}}, {"model": "assets.systemuser", "pk": 61, "fields": {"name": "Kathleen Clark", "username": "beverly", "_password": "eyJhbGciOiJIUzI1NiJ9.InZvbHV0cGF0Ig.F7uCpzruZ4ZGBU3VNWStgVJgh0kXl9bHDicT6aRqSys", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.106Z", "created_by": "Fake", "comment": "Nullam molestie nibh in lectus."}}, {"model": "assets.systemuser", "pk": 62, "fields": {"name": "Melissa Lane", "username": "carol", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.108Z", "created_by": "Fake", "comment": "Morbi non quam nec dui luctus rutrum."}}, {"model": "assets.systemuser", "pk": 63, "fields": {"name": "Gloria Meyer", "username": "irene", "_password": "eyJhbGciOiJIUzI1NiJ9.ImZ1c2NlIg.uqw6_p8tfiGPkV4IRtBTFE_YTVbOixNTktMa4AAMrbs", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.110Z", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio."}}, {"model": "assets.systemuser", "pk": 64, "fields": {"name": "Kimberly Hill", "username": "irene", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.112Z", "created_by": "Fake", "comment": "Nullam molestie nibh in lectus."}}, {"model": "assets.systemuser", "pk": 65, "fields": {"name": "Tina Hudson", "username": "frances", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9yY2ki.-H3gNP0GV0UZFR_MqKCCWMiaRDBQRRkfHxX2uojMk74", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.114Z", "created_by": "Fake", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue."}}, {"model": "assets.systemuser", "pk": 66, "fields": {"name": "Ruth Stone", "username": "christina", "_password": "eyJhbGciOiJIUzI1NiJ9.InZlc3RpYnVsdW0i.T6kOgaWPNOQhwvRxcDNwPInAoTWO8oQ6iipJWCyeZvs", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.116Z", "created_by": "Fake", "comment": "Phasellus in felis."}}, {"model": "assets.systemuser", "pk": 67, "fields": {"name": "Katherine Gilbert", "username": "jennifer", "_password": "eyJhbGciOiJIUzI1NiJ9.InV0Ig.lmRSuoHi4jv9YOiKOSfPjnCwSvHOnUh0UQcZXnEWZzo", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.117Z", "created_by": "Fake", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue."}}, {"model": "assets.systemuser", "pk": 68, "fields": {"name": "Deborah Hamilton", "username": "sandra", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.119Z", "created_by": "Fake", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh."}}, {"model": "assets.systemuser", "pk": 69, "fields": {"name": "Lori Gonzales", "username": "emily", "_password": "eyJhbGciOiJIUzI1NiJ9.ImEi.DmKqiccrpBqvmrAyHjGrnQCuTR7H-csji_L5NxeelbM", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.122Z", "created_by": "Fake", "comment": "Phasellus in felis."}}, {"model": "assets.systemuser", "pk": 70, "fields": {"name": "Melissa Turner", "username": "gloria", "_password": "eyJhbGciOiJIUzI1NiJ9.ImV1Ig.k74Kbv7It_-9OcFde0stLpx06suYL5M71w_MTMaDa9M", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.124Z", "created_by": "Fake", "comment": "Morbi quis tortor id nulla ultrices aliquet."}}, {"model": "assets.systemuser", "pk": 71, "fields": {"name": "Annie Reid", "username": "anna", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.125Z", "created_by": "Fake", "comment": "Donec posuere metus vitae ipsum."}}, {"model": "assets.systemuser", "pk": 72, "fields": {"name": "Cheryl Peterson", "username": "stephanie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnNlY3RldHVlciI.TzWrjty_1MomQ90WvTAEYz3Ypaemo4ROSK2xWJjBEbc", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.127Z", "created_by": "Fake", "comment": "Nulla tellus."}}, {"model": "assets.systemuser", "pk": 73, "fields": {"name": "Joan Meyer", "username": "joan", "_password": "eyJhbGciOiJIUzI1NiJ9.Imlwc3VtIg.rZpQHFzRecdHsQN3Et2YmLCm6zfPo_XFOeE-vz-CLe0", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.129Z", "created_by": "Fake", "comment": "Morbi quis tortor id nulla ultrices aliquet."}}, {"model": "assets.systemuser", "pk": 74, "fields": {"name": "Lori Mccoy", "username": "pamela", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5pc2ki.n-Lu5aSHiUvxHk4WAgVl5rBKooF4O9p22BV1JS22TCc", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.131Z", "created_by": "Fake", "comment": "Duis ac nibh."}}, {"model": "assets.systemuser", "pk": 75, "fields": {"name": "Karen Harris", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9kaW8i.1qhr1N7Gn0TJEa_Q7rIWvOTqqMKwFcHXP7BomzX7J7Q", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.133Z", "created_by": "Fake", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo."}}, {"model": "assets.systemuser", "pk": 76, "fields": {"name": "Jessica Edwards", "username": "amy", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1vbGVzdGllIg.3Ati0FpOQfWlYUHeXFmjZ1KOsOaAGFCSfit5ksNR9kE", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.136Z", "created_by": "Fake", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat."}}, {"model": "assets.systemuser", "pk": 77, "fields": {"name": "Christine Sims", "username": "louise", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVuaW0i.G3tfpkWpHaXsDj426yogQKH9WMk4-ONIo66sphs2Dgs", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.137Z", "created_by": "Fake", "comment": "Vestibulum rutrum rutrum neque."}}, {"model": "assets.systemuser", "pk": 78, "fields": {"name": "Jean Morgan", "username": "annie", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVnZXQi.GK-YPltMyh8RK55dYklRb8Wk7orCpwYZr2QMzH-3qTU", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.139Z", "created_by": "Fake", "comment": "Donec ut dolor."}}, {"model": "assets.systemuser", "pk": 79, "fields": {"name": "Kathy Burns", "username": "judy", "_password": "eyJhbGciOiJIUzI1NiJ9.Im11cyI.EMRq4XsUbC_YpCauan3_7VrGk-m6OV8YOqmfntYW-tw", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.142Z", "created_by": "Fake", "comment": "Pellentesque ultrices mattis odio."}}, {"model": "assets.systemuser", "pk": 80, "fields": {"name": "Carol Tucker", "username": "shirley", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5vbiI.pwMNExwLCmk9BWKxw3hxw9K9h0YRh102FvLNRKTumRs", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.144Z", "created_by": "Fake", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla."}}, {"model": "assets.systemuser", "pk": 81, "fields": {"name": "Barbara Diaz", "username": "nancy", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5hc2NldHVyIg.38imbSTbL6Rd0WDod36c1lGl1uQQNH_uBtIQflPhFHo", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.146Z", "created_by": "Fake", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit."}}, {"model": "assets.systemuser", "pk": 82, "fields": {"name": "Pamela Kim", "username": "kelly", "_password": "eyJhbGciOiJIUzI1NiJ9.InNpdCI.qhSlAh3rB-ai6rdQ-gxKBSFGhk-AbwiFe_CqQxSS3hM", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.148Z", "created_by": "Fake", "comment": "Curabitur at ipsum ac tellus semper interdum."}}, {"model": "assets.systemuser", "pk": 83, "fields": {"name": "Brenda Frazier", "username": "nicole", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9yY2ki.-H3gNP0GV0UZFR_MqKCCWMiaRDBQRRkfHxX2uojMk74", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.150Z", "created_by": "Fake", "comment": "Maecenas pulvinar lobortis est."}}, {"model": "assets.systemuser", "pk": 84, "fields": {"name": "Katherine Carter", "username": "paula", "_password": "eyJhbGciOiJIUzI1NiJ9.InNlbXBlciI.M5t2pcCxYWTXgJ_uQtXTa9vfZ3MoWF2KT0MQJChOHP8", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.152Z", "created_by": "Fake", "comment": "Nullam molestie nibh in lectus."}}, {"model": "assets.systemuser", "pk": 85, "fields": {"name": "Phyllis Burke", "username": "margaret", "_password": "eyJhbGciOiJIUzI1NiJ9.InF1aXMi.sr0cWp1ZfjO1QWimGNuf1x_MHaNsiEFy7_UxzlJkIfY", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.154Z", "created_by": "Fake", "comment": "In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem."}}, {"model": "assets.systemuser", "pk": 86, "fields": {"name": "Janice Watson", "username": "kelly", "_password": "eyJhbGciOiJIUzI1NiJ9.Im1hZ25hIg.n7_lEZwzxnXBn5B4uo3looqSDDSKNqXXAxpJYKKNn7c", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.156Z", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio."}}, {"model": "assets.systemuser", "pk": 87, "fields": {"name": "Donna Cruz", "username": "dorothy", "_password": "eyJhbGciOiJIUzI1NiJ9.ImVyYXQi.DYbnQqa9aMUVtPCk3VMA6RFeUmr4NNrdvTORYTQol2s", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.158Z", "created_by": "Fake", "comment": "Cras non velit nec nisi vulputate nonummy."}}, {"model": "assets.systemuser", "pk": 88, "fields": {"name": "Norma Brooks", "username": "ann", "_password": "eyJhbGciOiJIUzI1NiJ9.ImN1YmlsaWEi.68DQVCMmeZQyAGqE4SJAPFBiBwMaPVZ0J7zxj8a0WV8", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.160Z", "created_by": "Fake", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est."}}, {"model": "assets.systemuser", "pk": 89, "fields": {"name": "Frances Coleman", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5vbiI.pwMNExwLCmk9BWKxw3hxw9K9h0YRh102FvLNRKTumRs", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.162Z", "created_by": "Fake", "comment": "Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci."}}, {"model": "assets.systemuser", "pk": 90, "fields": {"name": "Anne Owens", "username": "kathy", "_password": "eyJhbGciOiJIUzI1NiJ9.InNhcGllbiI.FV7Fd4y2296g887c98VrXRInZMVQulodf4KOSrBCWog", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.164Z", "created_by": "Fake", "comment": "Suspendisse accumsan tortor quis turpis."}}, {"model": "assets.systemuser", "pk": 91, "fields": {"name": "Robin Stevens", "username": "denise", "_password": "eyJhbGciOiJIUzI1NiJ9.ImFjIg.m7atEKEFx68VZmM2clat-RyHmCQmR0lrKJ2VrzecInw", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.166Z", "created_by": "Fake", "comment": "Proin interdum mauris non ligula pellentesque ultrices."}}, {"model": "assets.systemuser", "pk": 92, "fields": {"name": "Kathleen Ryan", "username": "mildred", "_password": "eyJhbGciOiJIUzI1NiJ9.ImNvbnZhbGxpcyI.B_NDb4qHOmbgsEcxTJAb9xrXBHPzya03jDjrKhXztJU", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.168Z", "created_by": "Fake", "comment": "Maecenas pulvinar lobortis est."}}, {"model": "assets.systemuser", "pk": 93, "fields": {"name": "Theresa Gilbert", "username": "janice", "_password": "eyJhbGciOiJIUzI1NiJ9.ImluIg.Ic5fwxER7rs8gBhvBb4XRyTlZASKuBxVJ42SHALzjZw", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.170Z", "created_by": "Fake", "comment": "Duis mattis egestas metus."}}, {"model": "assets.systemuser", "pk": 94, "fields": {"name": "Christine Harper", "username": "brenda", "_password": "eyJhbGciOiJIUzI1NiJ9.Im51bGxhIg.FTT_U_lKC4cqONw96JU02zWnbRBUo6mQIO4v-HykDdQ", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.172Z", "created_by": "Fake", "comment": "Integer a nibh."}}, {"model": "assets.systemuser", "pk": 95, "fields": {"name": "Lisa Day", "username": "tammy", "_password": "eyJhbGciOiJIUzI1NiJ9.Im9kaW8i.1qhr1N7Gn0TJEa_Q7rIWvOTqqMKwFcHXP7BomzX7J7Q", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.174Z", "created_by": "Fake", "comment": "Quisque ut erat."}}, {"model": "assets.systemuser", "pk": 96, "fields": {"name": "Bonnie Olson", "username": "kelly", "_password": "eyJhbGciOiJIUzI1NiJ9.ImF0Ig.KKCMSzsOJLvrGcheEd9SDxRwZhts01BoZ0xyuxHx4Y0", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.176Z", "created_by": "Fake", "comment": "Sed accumsan felis."}}, {"model": "assets.systemuser", "pk": 97, "fields": {"name": "Donna Barnes", "username": "jessica", "_password": "eyJhbGciOiJIUzI1NiJ9.InRpbmNpZHVudCI.nJRX3abQiMg6iUZpF2Ek_kygvgbo8fIUG4zHAh7o9n4", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.179Z", "created_by": "Fake", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis."}}, {"model": "assets.systemuser", "pk": 98, "fields": {"name": "Irene Johnson", "username": "ann", "_password": "eyJhbGciOiJIUzI1NiJ9.Im5lcXVlIg.llRzdBaLUQqiEtGwr8xvk7hjLPiN2BUFmsxHGYDOUc4", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.181Z", "created_by": "Fake", "comment": "Sed accumsan felis."}}, {"model": "assets.systemuser", "pk": 99, "fields": {"name": "Diana Ortiz", "username": "martha", "_password": "eyJhbGciOiJIUzI1NiJ9.InNvY2lpcyI.AU4QgAO8-W3QjsMbYNoucQ3JZDttE9u3T8-u8xrfrkg", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.182Z", "created_by": "Fake", "comment": "Suspendisse ornare consequat lectus."}}, {"model": "assets.systemuser", "pk": 100, "fields": {"name": "Dorothy Riley", "username": "ashley", "_password": "eyJhbGciOiJIUzI1NiJ9.InBlbmF0aWJ1cyI.5tzDeDPjalAXSdJV_M_94f6p_rhCDxd3LYdbK3GNRcM", "protocol": "ssh", "_private_key": "", "_public_key": "", "auth_method": "K", "auto_push": true, "auto_update": true, "sudo": "/user/bin/whoami", "shell": "/bin/bash", "home": "", "uid": null, "date_created": "2017-01-07T12:54:15.184Z", "created_by": "Fake", "comment": "In sagittis dui vel nisl."}}, {"model": "assets.assetgroup", "pk": 1, "fields": {"name": "Default", "created_by": "", "date_created": "2016-11-25T06:50:28.627Z", "comment": "Default asset group", "system_users": []}}, {"model": "assets.assetgroup", "pk": 2, "fields": {"name": "Sara Brown", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.399Z", "comment": "Ut tellus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 3, "fields": {"name": "Jean Fowler", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.401Z", "comment": "Curabitur convallis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 4, "fields": {"name": "Ashley Bryant", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.402Z", "comment": "Nam dui.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 5, "fields": {"name": "Teresa Franklin", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.403Z", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 6, "fields": {"name": "Marilyn Elliott", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.405Z", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 7, "fields": {"name": "Pamela Schmidt", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.407Z", "comment": "Curabitur gravida nisi at nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 8, "fields": {"name": "Wanda Moore", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.408Z", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 9, "fields": {"name": "Tammy Andrews", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.410Z", "comment": "Cras mi pede, malesuada in, imperdiet et, commodo vulputate, justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 10, "fields": {"name": "Rose Hernandez", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.412Z", "comment": "Integer a nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 11, "fields": {"name": "Christina Cook", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.413Z", "comment": "Maecenas rhoncus aliquam lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 12, "fields": {"name": "Sara Hudson", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.415Z", "comment": "Morbi non lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 13, "fields": {"name": "Annie Woods", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.416Z", "comment": "Maecenas tincidunt lacus at velit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 14, "fields": {"name": "Teresa Austin", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.418Z", "comment": "Etiam faucibus cursus urna.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 15, "fields": {"name": "Diana Murphy", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.420Z", "comment": "Pellentesque at nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 16, "fields": {"name": "Kathy Stone", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.421Z", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 17, "fields": {"name": "Kathleen Bennett", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.423Z", "comment": "In quis justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 18, "fields": {"name": "Kathleen Hayes", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.424Z", "comment": "Curabitur gravida nisi at nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 19, "fields": {"name": "Barbara Howard", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.426Z", "comment": "Morbi ut odio.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 20, "fields": {"name": "Joyce Edwards", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.428Z", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 21, "fields": {"name": "Karen Robinson", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.429Z", "comment": "Vivamus vestibulum sagittis sapien.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 22, "fields": {"name": "Marie Lee", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.431Z", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 23, "fields": {"name": "Anne Hunter", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.432Z", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 24, "fields": {"name": "Stephanie Rodriguez", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.433Z", "comment": "Cras in purus eu magna vulputate luctus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 25, "fields": {"name": "Dorothy Ford", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.435Z", "comment": "Nulla mollis molestie lorem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 26, "fields": {"name": "Anna Little", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.437Z", "comment": "Nulla mollis molestie lorem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 27, "fields": {"name": "Irene Fisher", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.438Z", "comment": "Nullam molestie nibh in lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 28, "fields": {"name": "Lisa Greene", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.440Z", "comment": "Quisque arcu libero, rutrum ac, lobortis vel, dapibus at, diam.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 29, "fields": {"name": "Jane Shaw", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.442Z", "comment": "Curabitur in libero ut massa volutpat convallis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 30, "fields": {"name": "Brenda Chapman", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.443Z", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 31, "fields": {"name": "Paula Murphy", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.444Z", "comment": "Maecenas pulvinar lobortis est.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 32, "fields": {"name": "Janice Baker", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.446Z", "comment": "Phasellus sit amet erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 33, "fields": {"name": "Jessica Palmer", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.448Z", "comment": "Quisque ut erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 34, "fields": {"name": "Christine Cooper", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.449Z", "comment": "Proin eu mi.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 35, "fields": {"name": "Beverly Bowman", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.451Z", "comment": "Aenean sit amet justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 36, "fields": {"name": "Lori Williamson", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.453Z", "comment": "Fusce posuere felis sed lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 37, "fields": {"name": "Cynthia Vasquez", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.455Z", "comment": "Maecenas rhoncus aliquam lacus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 38, "fields": {"name": "Nicole Fisher", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.456Z", "comment": "Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 39, "fields": {"name": "Christine Arnold", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.458Z", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 40, "fields": {"name": "Andrea Medina", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.460Z", "comment": "Nam dui.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 41, "fields": {"name": "Annie Gutierrez", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.462Z", "comment": "Vivamus tortor.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 42, "fields": {"name": "Sara Morrison", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.463Z", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 43, "fields": {"name": "Margaret Ellis", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.465Z", "comment": "Nulla justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 44, "fields": {"name": "Rose Ford", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.466Z", "comment": "Nunc nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 45, "fields": {"name": "Heather Bennett", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.468Z", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 46, "fields": {"name": "Nicole Grant", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.470Z", "comment": "Duis aliquam convallis nunc.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 47, "fields": {"name": "Joyce Dunn", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.471Z", "comment": "Integer a nibh.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 48, "fields": {"name": "Linda Hayes", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.473Z", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 49, "fields": {"name": "Louise Peterson", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.475Z", "comment": "Donec ut mauris eget massa tempor convallis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 50, "fields": {"name": "Nicole Schmidt", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.476Z", "comment": "Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 51, "fields": {"name": "Paula Berry", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.478Z", "comment": "In sagittis dui vel nisl.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 52, "fields": {"name": "Mildred Edwards", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.480Z", "comment": "Morbi non lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 53, "fields": {"name": "Donna Robinson", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.482Z", "comment": "Nam tristique tortor eu pede.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 54, "fields": {"name": "Denise Stone", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.483Z", "comment": "Mauris sit amet eros.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 55, "fields": {"name": "Sara Banks", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.485Z", "comment": "Nulla ac enim.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 56, "fields": {"name": "Kathy Adams", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.486Z", "comment": "Sed sagittis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 57, "fields": {"name": "Amy Spencer", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.488Z", "comment": "Morbi vel lectus in quam fringilla rhoncus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 58, "fields": {"name": "Phyllis Rivera", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.490Z", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 59, "fields": {"name": "Marilyn Mccoy", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.492Z", "comment": "Maecenas ut massa quis augue luctus tincidunt.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 60, "fields": {"name": "Rachel Howell", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.493Z", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 61, "fields": {"name": "Mary Montgomery", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.495Z", "comment": "Aliquam erat volutpat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 62, "fields": {"name": "Norma Palmer", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.497Z", "comment": "In hac habitasse platea dictumst.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 63, "fields": {"name": "Jessica Stewart", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.498Z", "comment": "Morbi non quam nec dui luctus rutrum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 64, "fields": {"name": "Mary Fox", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.499Z", "comment": "Praesent lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 65, "fields": {"name": "Ruth Clark", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.501Z", "comment": "Duis mattis egestas metus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 66, "fields": {"name": "Bonnie Nelson", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.503Z", "comment": "Quisque id justo sit amet sapien dignissim vestibulum.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 67, "fields": {"name": "Amanda Dunn", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.504Z", "comment": "Mauris ullamcorper purus sit amet nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 68, "fields": {"name": "Linda Olson", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.506Z", "comment": "Nunc purus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 69, "fields": {"name": "Melissa Diaz", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.507Z", "comment": "Nulla tempus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 70, "fields": {"name": "Joan Chavez", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.509Z", "comment": "Vestibulum ac est lacinia nisi venenatis tristique.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 71, "fields": {"name": "Jane Richardson", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.511Z", "comment": "Proin interdum mauris non ligula pellentesque ultrices.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 72, "fields": {"name": "Jane Wheeler", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.513Z", "comment": "Nullam porttitor lacus at turpis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 73, "fields": {"name": "Ruby Smith", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.515Z", "comment": "In blandit ultrices enim.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 74, "fields": {"name": "Joan Wheeler", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.516Z", "comment": "Curabitur in libero ut massa volutpat convallis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 75, "fields": {"name": "Sarah Howard", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.518Z", "comment": "Aliquam erat volutpat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 76, "fields": {"name": "Jessica Bowman", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.519Z", "comment": "Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 77, "fields": {"name": "Robin Day", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.521Z", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 78, "fields": {"name": "Beverly Fields", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.522Z", "comment": "Nam nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 79, "fields": {"name": "Julia Foster", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.524Z", "comment": "Vestibulum quam sapien, varius ut, blandit non, interdum in, ante.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 80, "fields": {"name": "Melissa Collins", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.527Z", "comment": "Sed sagittis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 81, "fields": {"name": "Susan Matthews", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.528Z", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 82, "fields": {"name": "Martha Miller", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.530Z", "comment": "Nullam varius.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 83, "fields": {"name": "Gloria Griffin", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.531Z", "comment": "Phasellus in felis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 84, "fields": {"name": "Evelyn Gilbert", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.533Z", "comment": "In congue.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 85, "fields": {"name": "Jean Ray", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.535Z", "comment": "Phasellus in felis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 86, "fields": {"name": "Sandra Larson", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.537Z", "comment": "Praesent blandit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 87, "fields": {"name": "Jessica Welch", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.539Z", "comment": "Nunc rhoncus dui vel sem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 88, "fields": {"name": "Anne Bell", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.541Z", "comment": "Proin leo odio, porttitor id, consequat in, consequat ut, nulla.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 89, "fields": {"name": "Shirley Wright", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.542Z", "comment": "Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 90, "fields": {"name": "Carol Parker", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.545Z", "comment": "Nunc rhoncus dui vel sem.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 91, "fields": {"name": "Ann Murphy", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.546Z", "comment": "Curabitur convallis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 92, "fields": {"name": "Donna Hayes", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.548Z", "comment": "Quisque porta volutpat erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 93, "fields": {"name": "Sharon Thompson", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.549Z", "comment": "Quisque ut erat.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 94, "fields": {"name": "Ruby Perry", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.550Z", "comment": "Integer non velit.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 95, "fields": {"name": "Gloria Morrison", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.552Z", "comment": "Curabitur in libero ut massa volutpat convallis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 96, "fields": {"name": "Joan Hayes", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.554Z", "comment": "Praesent id massa id nisl venenatis lacinia.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 97, "fields": {"name": "Helen Rodriguez", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.555Z", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 98, "fields": {"name": "Diana Willis", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.557Z", "comment": "Curabitur convallis.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 99, "fields": {"name": "Dorothy Alexander", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.559Z", "comment": "Mauris lacinia sapien quis libero.", "system_users": []}}, {"model": "assets.assetgroup", "pk": 100, "fields": {"name": "Joyce Henderson", "created_by": "Fake", "date_created": "2017-01-07T12:54:15.560Z", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "system_users": []}}, {"model": "assets.asset", "pk": 1, "fields": {"ip": "0.0.0.0", "other_ip": null, "remote_card_ip": null, "hostname": "judith90", "port": 22, "admin_user": 49, "idc": 94, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:15.575Z", "comment": "", "groups": [11, 99, 29], "system_users": [99, 53, 41], "tags": []}}, {"model": "assets.asset", "pk": 2, "fields": {"ip": "1.1.1.1", "other_ip": null, "remote_card_ip": null, "hostname": "heather89", "port": 22, "admin_user": 41, "idc": 71, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:15.626Z", "comment": "", "groups": [88, 30, 51], "system_users": [10, 46, 2], "tags": []}}, {"model": "assets.asset", "pk": 3, "fields": {"ip": "2.2.2.2", "other_ip": null, "remote_card_ip": null, "hostname": "carol73", "port": 22, "admin_user": 90, "idc": 58, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:15.669Z", "comment": "", "groups": [45, 9, 5], "system_users": [86, 73, 41], "tags": []}}, {"model": "assets.asset", "pk": 4, "fields": {"ip": "3.3.3.3", "other_ip": null, "remote_card_ip": null, "hostname": "emily88", "port": 22, "admin_user": 77, "idc": 83, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:15.713Z", "comment": "", "groups": [67, 1, 68], "system_users": [33, 79, 66], "tags": []}}, {"model": "assets.asset", "pk": 5, "fields": {"ip": "4.4.4.4", "other_ip": null, "remote_card_ip": null, "hostname": "amy88", "port": 22, "admin_user": 40, "idc": 69, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:15.758Z", "comment": "", "groups": [51, 65, 14], "system_users": [52, 59, 60], "tags": []}}, {"model": "assets.asset", "pk": 6, "fields": {"ip": "5.5.5.5", "other_ip": null, "remote_card_ip": null, "hostname": "louise76", "port": 22, "admin_user": 98, "idc": 24, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:15.805Z", "comment": "", "groups": [50, 58, 8], "system_users": [40, 90, 94], "tags": []}}, {"model": "assets.asset", "pk": 7, "fields": {"ip": "6.6.6.6", "other_ip": null, "remote_card_ip": null, "hostname": "rose71", "port": 22, "admin_user": 72, "idc": 73, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:15.848Z", "comment": "", "groups": [88, 90, 65], "system_users": [87, 84, 92], "tags": []}}, {"model": "assets.asset", "pk": 8, "fields": {"ip": "7.7.7.7", "other_ip": null, "remote_card_ip": null, "hostname": "amanda77", "port": 22, "admin_user": 60, "idc": 53, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:15.894Z", "comment": "", "groups": [90, 28, 69], "system_users": [83, 67, 12], "tags": []}}, {"model": "assets.asset", "pk": 9, "fields": {"ip": "8.8.8.8", "other_ip": null, "remote_card_ip": null, "hostname": "rachel93", "port": 22, "admin_user": 98, "idc": 53, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:15.938Z", "comment": "", "groups": [7, 55, 75], "system_users": [71, 87, 36], "tags": []}}, {"model": "assets.asset", "pk": 10, "fields": {"ip": "9.9.9.9", "other_ip": null, "remote_card_ip": null, "hostname": "catherine85", "port": 22, "admin_user": 53, "idc": 49, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:15.983Z", "comment": "", "groups": [80, 50, 44], "system_users": [95, 93, 4], "tags": []}}, {"model": "assets.asset", "pk": 11, "fields": {"ip": "10.10.10.10", "other_ip": null, "remote_card_ip": null, "hostname": "irene88", "port": 22, "admin_user": 17, "idc": 73, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.029Z", "comment": "", "groups": [74, 44, 10], "system_users": [11, 29, 31], "tags": []}}, {"model": "assets.asset", "pk": 12, "fields": {"ip": "11.11.11.11", "other_ip": null, "remote_card_ip": null, "hostname": "judith64", "port": 22, "admin_user": 55, "idc": 73, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.071Z", "comment": "", "groups": [19, 29, 36], "system_users": [5, 61, 1], "tags": []}}, {"model": "assets.asset", "pk": 13, "fields": {"ip": "12.12.12.12", "other_ip": null, "remote_card_ip": null, "hostname": "christina63", "port": 22, "admin_user": 91, "idc": 12, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.113Z", "comment": "", "groups": [92, 42, 75], "system_users": [11, 7, 20], "tags": []}}, {"model": "assets.asset", "pk": 14, "fields": {"ip": "13.13.13.13", "other_ip": null, "remote_card_ip": null, "hostname": "donna86", "port": 22, "admin_user": 11, "idc": 22, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.155Z", "comment": "", "groups": [26, 25, 43], "system_users": [10, 36, 37], "tags": []}}, {"model": "assets.asset", "pk": 15, "fields": {"ip": "14.14.14.14", "other_ip": null, "remote_card_ip": null, "hostname": "ashley65", "port": 22, "admin_user": 19, "idc": 87, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.206Z", "comment": "", "groups": [74, 18, 44], "system_users": [76, 61, 65], "tags": []}}, {"model": "assets.asset", "pk": 16, "fields": {"ip": "15.15.15.15", "other_ip": null, "remote_card_ip": null, "hostname": "cynthia63", "port": 22, "admin_user": 86, "idc": 66, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.248Z", "comment": "", "groups": [63, 38, 31], "system_users": [24, 15, 12], "tags": []}}, {"model": "assets.asset", "pk": 17, "fields": {"ip": "16.16.16.16", "other_ip": null, "remote_card_ip": null, "hostname": "ann83", "port": 22, "admin_user": 10, "idc": 51, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.293Z", "comment": "", "groups": [66, 52, 73], "system_users": [99, 100, 76], "tags": []}}, {"model": "assets.asset", "pk": 18, "fields": {"ip": "17.17.17.17", "other_ip": null, "remote_card_ip": null, "hostname": "bonnie81", "port": 22, "admin_user": 60, "idc": 32, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.337Z", "comment": "", "groups": [3, 6, 5], "system_users": [32, 75, 61], "tags": []}}, {"model": "assets.asset", "pk": 19, "fields": {"ip": "18.18.18.18", "other_ip": null, "remote_card_ip": null, "hostname": "teresa78", "port": 22, "admin_user": 32, "idc": 14, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.384Z", "comment": "", "groups": [67, 47, 46], "system_users": [68, 7, 8], "tags": []}}, {"model": "assets.asset", "pk": 20, "fields": {"ip": "19.19.19.19", "other_ip": null, "remote_card_ip": null, "hostname": "anna68", "port": 22, "admin_user": 6, "idc": 33, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.427Z", "comment": "", "groups": [30, 98, 83], "system_users": [72, 9, 79], "tags": []}}, {"model": "assets.asset", "pk": 21, "fields": {"ip": "20.20.20.20", "other_ip": null, "remote_card_ip": null, "hostname": "ashley68", "port": 22, "admin_user": 39, "idc": 77, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.474Z", "comment": "", "groups": [57, 74, 52], "system_users": [19, 9, 85], "tags": []}}, {"model": "assets.asset", "pk": 22, "fields": {"ip": "21.21.21.21", "other_ip": null, "remote_card_ip": null, "hostname": "kathryn68", "port": 22, "admin_user": 100, "idc": 11, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.522Z", "comment": "", "groups": [66, 70, 18], "system_users": [99, 49, 92], "tags": []}}, {"model": "assets.asset", "pk": 23, "fields": {"ip": "22.22.22.22", "other_ip": null, "remote_card_ip": null, "hostname": "phyllis65", "port": 22, "admin_user": 78, "idc": 54, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.566Z", "comment": "", "groups": [66, 62, 44], "system_users": [26, 45, 53], "tags": []}}, {"model": "assets.asset", "pk": 24, "fields": {"ip": "23.23.23.23", "other_ip": null, "remote_card_ip": null, "hostname": "linda70", "port": 22, "admin_user": 85, "idc": 20, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.612Z", "comment": "", "groups": [23, 99, 28], "system_users": [68, 78, 41], "tags": []}}, {"model": "assets.asset", "pk": 25, "fields": {"ip": "24.24.24.24", "other_ip": null, "remote_card_ip": null, "hostname": "betty66", "port": 22, "admin_user": 41, "idc": 39, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.656Z", "comment": "", "groups": [88, 94, 5], "system_users": [4, 65, 60], "tags": []}}, {"model": "assets.asset", "pk": 26, "fields": {"ip": "25.25.25.25", "other_ip": null, "remote_card_ip": null, "hostname": "rachel78", "port": 22, "admin_user": 96, "idc": 25, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.703Z", "comment": "", "groups": [84, 28, 60], "system_users": [83, 76, 66], "tags": []}}, {"model": "assets.asset", "pk": 27, "fields": {"ip": "26.26.26.26", "other_ip": null, "remote_card_ip": null, "hostname": "theresa79", "port": 22, "admin_user": 100, "idc": 54, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.748Z", "comment": "", "groups": [63, 56, 38], "system_users": [55, 52, 67], "tags": []}}, {"model": "assets.asset", "pk": 28, "fields": {"ip": "27.27.27.27", "other_ip": null, "remote_card_ip": null, "hostname": "marilyn79", "port": 22, "admin_user": 5, "idc": 31, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.791Z", "comment": "", "groups": [39, 74, 61], "system_users": [87, 38, 66], "tags": []}}, {"model": "assets.asset", "pk": 29, "fields": {"ip": "28.28.28.28", "other_ip": null, "remote_card_ip": null, "hostname": "joan71", "port": 22, "admin_user": 2, "idc": 92, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.833Z", "comment": "", "groups": [30, 84, 12], "system_users": [9, 86, 42], "tags": []}}, {"model": "assets.asset", "pk": 30, "fields": {"ip": "29.29.29.29", "other_ip": null, "remote_card_ip": null, "hostname": "louise71", "port": 22, "admin_user": 91, "idc": 98, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.879Z", "comment": "", "groups": [19, 11, 94], "system_users": [77, 43, 95], "tags": []}}, {"model": "assets.asset", "pk": 31, "fields": {"ip": "30.30.30.30", "other_ip": null, "remote_card_ip": null, "hostname": "wanda86", "port": 22, "admin_user": 29, "idc": 8, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.922Z", "comment": "", "groups": [78, 15, 96], "system_users": [55, 16, 98], "tags": []}}, {"model": "assets.asset", "pk": 32, "fields": {"ip": "31.31.31.31", "other_ip": null, "remote_card_ip": null, "hostname": "andrea66", "port": 22, "admin_user": 77, "idc": 83, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:16.963Z", "comment": "", "groups": [53, 28, 43], "system_users": [40, 13, 85], "tags": []}}, {"model": "assets.asset", "pk": 33, "fields": {"ip": "32.32.32.32", "other_ip": null, "remote_card_ip": null, "hostname": "jennifer84", "port": 22, "admin_user": 62, "idc": 61, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.010Z", "comment": "", "groups": [30, 32, 36], "system_users": [55, 71, 53], "tags": []}}, {"model": "assets.asset", "pk": 34, "fields": {"ip": "33.33.33.33", "other_ip": null, "remote_card_ip": null, "hostname": "debra74", "port": 22, "admin_user": 51, "idc": 12, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.056Z", "comment": "", "groups": [57, 41, 16], "system_users": [55, 44, 29], "tags": []}}, {"model": "assets.asset", "pk": 35, "fields": {"ip": "34.34.34.34", "other_ip": null, "remote_card_ip": null, "hostname": "stephanie89", "port": 22, "admin_user": 30, "idc": 100, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.106Z", "comment": "", "groups": [84, 76, 31], "system_users": [83, 17, 41], "tags": []}}, {"model": "assets.asset", "pk": 36, "fields": {"ip": "35.35.35.35", "other_ip": null, "remote_card_ip": null, "hostname": "judy93", "port": 22, "admin_user": 12, "idc": 13, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.154Z", "comment": "", "groups": [54, 70, 14], "system_users": [86, 48, 38], "tags": []}}, {"model": "assets.asset", "pk": 37, "fields": {"ip": "36.36.36.36", "other_ip": null, "remote_card_ip": null, "hostname": "robin85", "port": 22, "admin_user": 76, "idc": 58, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.203Z", "comment": "", "groups": [1, 45, 97], "system_users": [92, 38, 23], "tags": []}}, {"model": "assets.asset", "pk": 38, "fields": {"ip": "37.37.37.37", "other_ip": null, "remote_card_ip": null, "hostname": "paula93", "port": 22, "admin_user": 54, "idc": 93, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.248Z", "comment": "", "groups": [82, 75, 14], "system_users": [58, 92, 25], "tags": []}}, {"model": "assets.asset", "pk": 39, "fields": {"ip": "38.38.38.38", "other_ip": null, "remote_card_ip": null, "hostname": "ruth93", "port": 22, "admin_user": 39, "idc": 2, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.294Z", "comment": "", "groups": [43, 52, 60], "system_users": [9, 43, 62], "tags": []}}, {"model": "assets.asset", "pk": 40, "fields": {"ip": "39.39.39.39", "other_ip": null, "remote_card_ip": null, "hostname": "janet93", "port": 22, "admin_user": 89, "idc": 94, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.340Z", "comment": "", "groups": [66, 15, 87], "system_users": [44, 68, 88], "tags": []}}, {"model": "assets.asset", "pk": 41, "fields": {"ip": "40.40.40.40", "other_ip": null, "remote_card_ip": null, "hostname": "robin89", "port": 22, "admin_user": 47, "idc": 33, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.391Z", "comment": "", "groups": [37, 61, 80], "system_users": [43, 64, 12], "tags": []}}, {"model": "assets.asset", "pk": 42, "fields": {"ip": "41.41.41.41", "other_ip": null, "remote_card_ip": null, "hostname": "norma88", "port": 22, "admin_user": 83, "idc": 4, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.440Z", "comment": "", "groups": [72, 80, 12], "system_users": [22, 6, 92], "tags": []}}, {"model": "assets.asset", "pk": 43, "fields": {"ip": "42.42.42.42", "other_ip": null, "remote_card_ip": null, "hostname": "sara80", "port": 22, "admin_user": 13, "idc": 60, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.491Z", "comment": "", "groups": [97, 36, 51], "system_users": [19, 99, 66], "tags": []}}, {"model": "assets.asset", "pk": 44, "fields": {"ip": "43.43.43.43", "other_ip": null, "remote_card_ip": null, "hostname": "robin88", "port": 22, "admin_user": 95, "idc": 81, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.550Z", "comment": "", "groups": [27, 74, 2], "system_users": [97, 10, 91], "tags": []}}, {"model": "assets.asset", "pk": 45, "fields": {"ip": "44.44.44.44", "other_ip": null, "remote_card_ip": null, "hostname": "julie65", "port": 22, "admin_user": 60, "idc": 35, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.601Z", "comment": "", "groups": [33, 16, 80], "system_users": [69, 70, 66], "tags": []}}, {"model": "assets.asset", "pk": 46, "fields": {"ip": "45.45.45.45", "other_ip": null, "remote_card_ip": null, "hostname": "ashley86", "port": 22, "admin_user": 10, "idc": 51, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.652Z", "comment": "", "groups": [35, 28, 61], "system_users": [39, 67, 45], "tags": []}}, {"model": "assets.asset", "pk": 47, "fields": {"ip": "46.46.46.46", "other_ip": null, "remote_card_ip": null, "hostname": "tammy74", "port": 22, "admin_user": 13, "idc": 29, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.700Z", "comment": "", "groups": [36, 38, 10], "system_users": [80, 59, 41], "tags": []}}, {"model": "assets.asset", "pk": 48, "fields": {"ip": "47.47.47.47", "other_ip": null, "remote_card_ip": null, "hostname": "gloria75", "port": 22, "admin_user": 51, "idc": 34, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.752Z", "comment": "", "groups": [85, 51, 31], "system_users": [44, 86, 36], "tags": []}}, {"model": "assets.asset", "pk": 49, "fields": {"ip": "48.48.48.48", "other_ip": null, "remote_card_ip": null, "hostname": "carolyn81", "port": 22, "admin_user": 73, "idc": 59, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.809Z", "comment": "", "groups": [91, 26, 83], "system_users": [33, 51, 70], "tags": []}}, {"model": "assets.asset", "pk": 50, "fields": {"ip": "49.49.49.49", "other_ip": null, "remote_card_ip": null, "hostname": "pamela73", "port": 22, "admin_user": 30, "idc": 56, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.857Z", "comment": "", "groups": [53, 83, 7], "system_users": [39, 33, 8], "tags": []}}, {"model": "assets.asset", "pk": 51, "fields": {"ip": "50.50.50.50", "other_ip": null, "remote_card_ip": null, "hostname": "patricia89", "port": 22, "admin_user": 14, "idc": 99, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.905Z", "comment": "", "groups": [25, 80, 65], "system_users": [86, 37, 65], "tags": []}}, {"model": "assets.asset", "pk": 52, "fields": {"ip": "51.51.51.51", "other_ip": null, "remote_card_ip": null, "hostname": "tammy63", "port": 22, "admin_user": 81, "idc": 8, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:17.955Z", "comment": "", "groups": [92, 53, 8], "system_users": [99, 9, 43], "tags": []}}, {"model": "assets.asset", "pk": 53, "fields": {"ip": "52.52.52.52", "other_ip": null, "remote_card_ip": null, "hostname": "lillian82", "port": 22, "admin_user": 10, "idc": 4, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.004Z", "comment": "", "groups": [97, 33, 7], "system_users": [94, 98, 60], "tags": []}}, {"model": "assets.asset", "pk": 54, "fields": {"ip": "53.53.53.53", "other_ip": null, "remote_card_ip": null, "hostname": "kelly82", "port": 22, "admin_user": 72, "idc": 64, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.055Z", "comment": "", "groups": [100, 38, 77], "system_users": [47, 64, 28], "tags": []}}, {"model": "assets.asset", "pk": 55, "fields": {"ip": "54.54.54.54", "other_ip": null, "remote_card_ip": null, "hostname": "kathryn81", "port": 22, "admin_user": 83, "idc": 49, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.109Z", "comment": "", "groups": [11, 95, 89], "system_users": [39, 36, 65], "tags": []}}, {"model": "assets.asset", "pk": 56, "fields": {"ip": "55.55.55.55", "other_ip": null, "remote_card_ip": null, "hostname": "kathryn67", "port": 22, "admin_user": 55, "idc": 85, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.164Z", "comment": "", "groups": [83, 100, 2], "system_users": [22, 94, 53], "tags": []}}, {"model": "assets.asset", "pk": 57, "fields": {"ip": "56.56.56.56", "other_ip": null, "remote_card_ip": null, "hostname": "debra81", "port": 22, "admin_user": 75, "idc": 56, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.218Z", "comment": "", "groups": [40, 25, 16], "system_users": [87, 49, 75], "tags": []}}, {"model": "assets.asset", "pk": 58, "fields": {"ip": "57.57.57.57", "other_ip": null, "remote_card_ip": null, "hostname": "joyce94", "port": 22, "admin_user": 64, "idc": 56, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.265Z", "comment": "", "groups": [36, 69, 12], "system_users": [6, 39, 78], "tags": []}}, {"model": "assets.asset", "pk": 59, "fields": {"ip": "58.58.58.58", "other_ip": null, "remote_card_ip": null, "hostname": "patricia91", "port": 22, "admin_user": 91, "idc": 36, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.316Z", "comment": "", "groups": [67, 84, 89], "system_users": [54, 18, 75], "tags": []}}, {"model": "assets.asset", "pk": 60, "fields": {"ip": "59.59.59.59", "other_ip": null, "remote_card_ip": null, "hostname": "tammy94", "port": 22, "admin_user": 79, "idc": 36, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.366Z", "comment": "", "groups": [84, 85, 48], "system_users": [55, 43, 61], "tags": []}}, {"model": "assets.asset", "pk": 61, "fields": {"ip": "60.60.60.60", "other_ip": null, "remote_card_ip": null, "hostname": "heather84", "port": 22, "admin_user": 63, "idc": 95, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.420Z", "comment": "", "groups": [41, 85, 77], "system_users": [72, 89, 37], "tags": []}}, {"model": "assets.asset", "pk": 62, "fields": {"ip": "61.61.61.61", "other_ip": null, "remote_card_ip": null, "hostname": "helen91", "port": 22, "admin_user": 20, "idc": 62, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.468Z", "comment": "", "groups": [91, 23, 100], "system_users": [58, 67, 4], "tags": []}}, {"model": "assets.asset", "pk": 63, "fields": {"ip": "62.62.62.62", "other_ip": null, "remote_card_ip": null, "hostname": "tina80", "port": 22, "admin_user": 76, "idc": 31, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.519Z", "comment": "", "groups": [22, 64, 81], "system_users": [97, 79, 64], "tags": []}}, {"model": "assets.asset", "pk": 64, "fields": {"ip": "64.64.64.64", "other_ip": null, "remote_card_ip": null, "hostname": "cynthia67", "port": 22, "admin_user": 90, "idc": 40, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.580Z", "comment": "", "groups": [16, 31, 86], "system_users": [72, 52, 36], "tags": []}}, {"model": "assets.asset", "pk": 65, "fields": {"ip": "65.65.65.65", "other_ip": null, "remote_card_ip": null, "hostname": "lori83", "port": 22, "admin_user": 95, "idc": 49, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.627Z", "comment": "", "groups": [36, 6, 31], "system_users": [79, 34, 12], "tags": []}}, {"model": "assets.asset", "pk": 66, "fields": {"ip": "66.66.66.66", "other_ip": null, "remote_card_ip": null, "hostname": "lisa91", "port": 22, "admin_user": 34, "idc": 17, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.675Z", "comment": "", "groups": [35, 17, 5], "system_users": [13, 10, 45], "tags": []}}, {"model": "assets.asset", "pk": 67, "fields": {"ip": "67.67.67.67", "other_ip": null, "remote_card_ip": null, "hostname": "paula94", "port": 22, "admin_user": 9, "idc": 11, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.723Z", "comment": "", "groups": [6, 77, 2], "system_users": [83, 13, 89], "tags": []}}, {"model": "assets.asset", "pk": 68, "fields": {"ip": "68.68.68.68", "other_ip": null, "remote_card_ip": null, "hostname": "anne90", "port": 22, "admin_user": 93, "idc": 92, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.770Z", "comment": "", "groups": [83, 22, 81], "system_users": [97, 65, 23], "tags": []}}, {"model": "assets.asset", "pk": 69, "fields": {"ip": "69.69.69.69", "other_ip": null, "remote_card_ip": null, "hostname": "anne86", "port": 22, "admin_user": 52, "idc": 81, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.816Z", "comment": "", "groups": [21, 94, 86], "system_users": [19, 51, 38], "tags": []}}, {"model": "assets.asset", "pk": 70, "fields": {"ip": "70.70.70.70", "other_ip": null, "remote_card_ip": null, "hostname": "evelyn89", "port": 22, "admin_user": 91, "idc": 57, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.862Z", "comment": "", "groups": [11, 37, 5], "system_users": [30, 53], "tags": []}}, {"model": "assets.asset", "pk": 71, "fields": {"ip": "71.71.71.71", "other_ip": null, "remote_card_ip": null, "hostname": "teresa63", "port": 22, "admin_user": 33, "idc": 54, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.912Z", "comment": "", "groups": [69, 12, 8], "system_users": [35, 70, 2], "tags": []}}, {"model": "assets.asset", "pk": 72, "fields": {"ip": "72.72.72.72", "other_ip": null, "remote_card_ip": null, "hostname": "joyce65", "port": 22, "admin_user": 28, "idc": 24, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:18.959Z", "comment": "", "groups": [25, 71, 68], "system_users": [94, 26, 42], "tags": []}}, {"model": "assets.asset", "pk": 73, "fields": {"ip": "73.73.73.73", "other_ip": null, "remote_card_ip": null, "hostname": "beverly80", "port": 22, "admin_user": 77, "idc": 30, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.009Z", "comment": "", "groups": [80, 10, 2], "system_users": [20, 86, 79], "tags": []}}, {"model": "assets.asset", "pk": 74, "fields": {"ip": "74.74.74.74", "other_ip": null, "remote_card_ip": null, "hostname": "cheryl73", "port": 22, "admin_user": 33, "idc": 8, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.056Z", "comment": "", "groups": [84, 22], "system_users": [19, 20, 52], "tags": []}}, {"model": "assets.asset", "pk": 75, "fields": {"ip": "75.75.75.75", "other_ip": null, "remote_card_ip": null, "hostname": "theresa65", "port": 22, "admin_user": 21, "idc": 48, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.103Z", "comment": "", "groups": [63, 22, 59], "system_users": [51, 79, 48], "tags": []}}, {"model": "assets.asset", "pk": 76, "fields": {"ip": "76.76.76.76", "other_ip": null, "remote_card_ip": null, "hostname": "helen78", "port": 22, "admin_user": 37, "idc": 50, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.150Z", "comment": "", "groups": [66, 64, 81], "system_users": [47, 56, 91], "tags": []}}, {"model": "assets.asset", "pk": 77, "fields": {"ip": "77.77.77.77", "other_ip": null, "remote_card_ip": null, "hostname": "debra69", "port": 22, "admin_user": 13, "idc": 74, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.208Z", "comment": "", "groups": [25, 28, 50], "system_users": [83, 58], "tags": []}}, {"model": "assets.asset", "pk": 78, "fields": {"ip": "78.78.78.78", "other_ip": null, "remote_card_ip": null, "hostname": "kathleen68", "port": 22, "admin_user": 23, "idc": 17, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.254Z", "comment": "", "groups": [87, 47, 24], "system_users": [27, 51, 89], "tags": []}}, {"model": "assets.asset", "pk": 79, "fields": {"ip": "79.79.79.79", "other_ip": null, "remote_card_ip": null, "hostname": "wanda79", "port": 22, "admin_user": 77, "idc": 12, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.300Z", "comment": "", "groups": [91, 27, 50], "system_users": [37, 60, 41], "tags": []}}, {"model": "assets.asset", "pk": 80, "fields": {"ip": "80.80.80.80", "other_ip": null, "remote_card_ip": null, "hostname": "denise65", "port": 22, "admin_user": 100, "idc": 29, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.349Z", "comment": "", "groups": [78, 87, 28], "system_users": [77, 88, 66], "tags": []}}, {"model": "assets.asset", "pk": 81, "fields": {"ip": "81.81.81.81", "other_ip": null, "remote_card_ip": null, "hostname": "kathy76", "port": 22, "admin_user": 3, "idc": 59, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.409Z", "comment": "", "groups": [13, 98, 55], "system_users": [27, 7, 58], "tags": []}}, {"model": "assets.asset", "pk": 82, "fields": {"ip": "82.82.82.82", "other_ip": null, "remote_card_ip": null, "hostname": "tina74", "port": 22, "admin_user": 61, "idc": 20, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.471Z", "comment": "", "groups": [92, 45, 61], "system_users": [24, 18, 65], "tags": []}}, {"model": "assets.asset", "pk": 83, "fields": {"ip": "83.83.83.83", "other_ip": null, "remote_card_ip": null, "hostname": "barbara75", "port": 22, "admin_user": 99, "idc": 75, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.521Z", "comment": "", "groups": [69, 86, 8], "system_users": [52, 93, 65], "tags": []}}, {"model": "assets.asset", "pk": 84, "fields": {"ip": "84.84.84.84", "other_ip": null, "remote_card_ip": null, "hostname": "linda89", "port": 22, "admin_user": 67, "idc": 2, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.570Z", "comment": "", "groups": [57, 11, 10], "system_users": [24, 22, 93], "tags": []}}, {"model": "assets.asset", "pk": 85, "fields": {"ip": "85.85.85.85", "other_ip": null, "remote_card_ip": null, "hostname": "angela86", "port": 22, "admin_user": 73, "idc": 46, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.619Z", "comment": "", "groups": [4, 99, 87], "system_users": [80, 56, 4], "tags": []}}, {"model": "assets.asset", "pk": 86, "fields": {"ip": "86.86.86.86", "other_ip": null, "remote_card_ip": null, "hostname": "laura87", "port": 22, "admin_user": 57, "idc": 94, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.669Z", "comment": "", "groups": [4, 52, 46], "system_users": [71, 57, 42], "tags": []}}, {"model": "assets.asset", "pk": 87, "fields": {"ip": "87.87.87.87", "other_ip": null, "remote_card_ip": null, "hostname": "sharon94", "port": 22, "admin_user": 49, "idc": 21, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.717Z", "comment": "", "groups": [95, 22, 64], "system_users": [72, 18, 17], "tags": []}}, {"model": "assets.asset", "pk": 88, "fields": {"ip": "88.88.88.88", "other_ip": null, "remote_card_ip": null, "hostname": "betty94", "port": 22, "admin_user": 34, "idc": 3, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.767Z", "comment": "", "groups": [79, 7, 73], "system_users": [9, 97, 92], "tags": []}}, {"model": "assets.asset", "pk": 89, "fields": {"ip": "89.89.89.89", "other_ip": null, "remote_card_ip": null, "hostname": "katherine71", "port": 22, "admin_user": 98, "idc": 54, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.813Z", "comment": "", "groups": [66, 77, 86], "system_users": [22, 25, 4], "tags": []}}, {"model": "assets.asset", "pk": 90, "fields": {"ip": "90.90.90.90", "other_ip": null, "remote_card_ip": null, "hostname": "mary87", "port": 22, "admin_user": 25, "idc": 46, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.856Z", "comment": "", "groups": [84, 20, 89], "system_users": [96, 54, 75], "tags": []}}, {"model": "assets.asset", "pk": 91, "fields": {"ip": "91.91.91.91", "other_ip": null, "remote_card_ip": null, "hostname": "cheryl81", "port": 22, "admin_user": 29, "idc": 95, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.903Z", "comment": "", "groups": [30, 39, 73], "system_users": [88, 2], "tags": []}}, {"model": "assets.asset", "pk": 92, "fields": {"ip": "92.92.92.92", "other_ip": null, "remote_card_ip": null, "hostname": "helen89", "port": 22, "admin_user": 21, "idc": 89, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.949Z", "comment": "", "groups": [78, 98, 27], "system_users": [87, 70, 85], "tags": []}}, {"model": "assets.asset", "pk": 93, "fields": {"ip": "93.93.93.93", "other_ip": null, "remote_card_ip": null, "hostname": "michelle93", "port": 22, "admin_user": 94, "idc": 25, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:19.993Z", "comment": "", "groups": [99, 69, 42], "system_users": [51, 62, 93], "tags": []}}, {"model": "assets.asset", "pk": 94, "fields": {"ip": "94.94.94.94", "other_ip": null, "remote_card_ip": null, "hostname": "cheryl72", "port": 22, "admin_user": 59, "idc": 74, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:20.036Z", "comment": "", "groups": [91, 97, 79], "system_users": [44, 95, 41], "tags": []}}, {"model": "assets.asset", "pk": 95, "fields": {"ip": "95.95.95.95", "other_ip": null, "remote_card_ip": null, "hostname": "theresa91", "port": 22, "admin_user": 2, "idc": 87, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:20.083Z", "comment": "", "groups": [40, 34, 92], "system_users": [19, 51, 49], "tags": []}}, {"model": "assets.asset", "pk": 96, "fields": {"ip": "96.96.96.96", "other_ip": null, "remote_card_ip": null, "hostname": "paula71", "port": 22, "admin_user": 60, "idc": 5, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:20.127Z", "comment": "", "groups": [30, 90, 63], "system_users": [97, 58, 49], "tags": []}}, {"model": "assets.asset", "pk": 97, "fields": {"ip": "97.97.97.97", "other_ip": null, "remote_card_ip": null, "hostname": "mildred65", "port": 22, "admin_user": 89, "idc": 24, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:20.171Z", "comment": "", "groups": [19, 77, 65], "system_users": [54, 43, 50], "tags": []}}, {"model": "assets.asset", "pk": 98, "fields": {"ip": "98.98.98.98", "other_ip": null, "remote_card_ip": null, "hostname": "cheryl67", "port": 22, "admin_user": 71, "idc": 68, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:20.216Z", "comment": "", "groups": [87, 81, 14], "system_users": [54, 67, 66], "tags": []}}, {"model": "assets.asset", "pk": 99, "fields": {"ip": "99.99.99.99", "other_ip": null, "remote_card_ip": null, "hostname": "deborah84", "port": 22, "admin_user": 43, "idc": 6, "mac_address": null, "brand": null, "cpu": null, "memory": null, "disk": null, "os": null, "cabinet_no": null, "cabinet_pos": null, "number": null, "status": "In use", "type": "Server", "env": "Prod", "sn": null, "created_by": "Fake", "is_active": true, "date_created": "2017-01-07T12:54:20.262Z", "comment": "", "groups": [48, 61, 58], "system_users": [81, 18, 38], "tags": []}}, {"model": "audits.loginlog", "pk": 1, "fields": {"username": "admin", "name": "Administrator", "login_type": "W", "login_ip": "127.0.0.1", "login_city": "Unknown", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "date_login": "2017-01-07T12:55:03.173Z"}}, {"model": "audits.loginlog", "pk": 2, "fields": {"username": "admin", "name": "Administrator", "login_type": "W", "login_ip": "127.0.0.1", "login_city": "Unknown", "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36", "date_login": "2017-01-07T13:42:23.455Z"}}, {"model": "captcha.captchastore", "pk": 2, "fields": {"challenge": "IBWH", "response": "ibwh", "hashkey": "d87aab36c90d9c0c7db58b8c962489e7fe230255", "expiration": "2017-01-07T13:46:54.333Z"}}, {"model": "captcha.captchastore", "pk": 3, "fields": {"challenge": "ZEPZ", "response": "zepz", "hashkey": "e6e938b29de009f7297d3446e4ed2c2c971ad6a3", "expiration": "2017-01-07T13:47:00.154Z"}}, {"model": "captcha.captchastore", "pk": 4, "fields": {"challenge": "SEKW", "response": "sekw", "hashkey": "55aa74821b2aea35ff1b6af799d2bf96a6e6f38e", "expiration": "2017-01-07T13:47:04.781Z"}}, {"model": "captcha.captchastore", "pk": 5, "fields": {"challenge": "NOXK", "response": "noxk", "hashkey": "098a92782503249387501ba2930973b25dc31b2d", "expiration": "2017-01-07T13:47:09.478Z"}}, {"model": "captcha.captchastore", "pk": 6, "fields": {"challenge": "FKTB", "response": "fktb", "hashkey": "919d5ed6fe06d1eedb65d1fbe6e55cc2db11aa22", "expiration": "2017-01-07T13:47:14.351Z"}}, {"model": "sessions.session", "pk": "m8l7fuw33rgu7p6x9p5n5bneborp5lf2", "fields": {"session_data": "YTE3NDM3YzAwNmViYzNjZDAyMTM3M2UyMjJhNDEwZDJiYzU5ZDc2Zjp7Il9hdXRoX3VzZXJfaGFzaCI6IjY4ZWFlZmFjOTAzY2Q4NDRhMGE0NGIwMTcxNjJmOWJmMDIyZDg1MjYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2017-01-21T13:42:22.874Z"}}, {"model": "sessions.session", "pk": "tes2ijj8mt8o0gwch6ty2ynmd97pbka4", "fields": {"session_data": "YTE3NDM3YzAwNmViYzNjZDAyMTM3M2UyMjJhNDEwZDJiYzU5ZDc2Zjp7Il9hdXRoX3VzZXJfaGFzaCI6IjY4ZWFlZmFjOTAzY2Q4NDRhMGE0NGIwMTcxNjJmOWJmMDIyZDg1MjYiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIxIn0=", "expire_date": "2017-01-21T12:55:03.006Z"}}, {"model": "users.user", "pk": 1, "fields": {"password": "pbkdf2_sha256$30000$RwSpXYAYQGbQ$PADpsQmM+cO5Y/R1CVSx3qNV4EbGIm2k+iMBXUtwvNc=", "last_login": "2017-01-07T13:42:22.741Z", "first_name": "", "last_name": "", "is_active": true, "date_joined": "2016-11-25T06:50:28.412Z", "username": "admin", "name": "Administrator", "email": "admin@jumpserver.org", "role": "Admin", "avatar": "", "wechat": "", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Administrator is the super user of system", "is_first_login": false, "date_expired": "2086-11-08T06:50:28.412Z", "created_by": "System", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 2, "fields": {"password": "pbkdf2_sha256$30000$OZBcN41jfEVV$UAO8ASzCoh+NSeND9nEs5bowX7PJwfH4nG80vRZDdss=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:23.226Z", "username": "angela85", "name": "Anne Hill", "email": "henry@gigaclub.org", "role": "App", "avatar": "", "wechat": "michelle83", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse ornare consequat lectus.", "is_first_login": false, "date_expired": "2086-12-21T12:52:23.226Z", "created_by": "admin", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 3, "fields": {"password": "pbkdf2_sha256$30000$9PLLsFa0jeoX$Z36tiSWZt0TwPwjxAsXx1c5r8CTdm/grLdsKfX0uygA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:23.385Z", "username": "kathy77", "name": "Kathleen Mendoza", "email": "kathleen@quinu.com", "role": "Admin", "avatar": "", "wechat": "diana70", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean fermentum.", "is_first_login": false, "date_expired": "2086-12-21T12:52:23.385Z", "created_by": "angela85", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 4, "fields": {"password": "pbkdf2_sha256$30000$WfEtelO8vQBk$3+T98ukgr8kkK5h9bXoaDp/VuLuqZVOTh60eYJzzoMY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:23.537Z", "username": "todd93", "name": "Christina Kennedy", "email": "diane@realcube.edu", "role": "User", "avatar": "", "wechat": "rebecca79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cras in purus eu magna vulputate luctus.", "is_first_login": false, "date_expired": "2086-12-21T12:52:23.537Z", "created_by": "admin", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 5, "fields": {"password": "pbkdf2_sha256$30000$GhvKUJNqM4vv$+3uz5uR29DDzPW+l2tTCTVRFEM/yP2HVKsXMFctJyJQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:23.690Z", "username": "jessica94", "name": "Sarah Ruiz", "email": "sharon@centidel.mil", "role": "Admin", "avatar": "", "wechat": "lillian76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus vel nulla eget eros elementum pellentesque.", "is_first_login": false, "date_expired": "2086-12-21T12:52:23.690Z", "created_by": "kathy77", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 6, "fields": {"password": "pbkdf2_sha256$30000$MJWY8V3WhWKS$btJcCnXV7OphbGvjyRmdHyJ9SeYvcvG6KkYyeqy62iQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:23.854Z", "username": "catherine66", "name": "Angela Watkins", "email": "gloria@brainbox.org", "role": "User", "avatar": "", "wechat": "cheryl94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "is_first_login": false, "date_expired": "2086-12-21T12:52:23.854Z", "created_by": "kathy77", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 7, "fields": {"password": "pbkdf2_sha256$30000$sJ6kL9uSxx16$m+nR/xBsmvCWCJk8M2hMaFrGFgT8P5rtUyBw1/CFpe4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:24.019Z", "username": "karen69", "name": "Robin Morris", "email": "stephanie@trunyx.info", "role": "App", "avatar": "", "wechat": "nancy84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "is_first_login": false, "date_expired": "2086-12-21T12:52:24.019Z", "created_by": "kathy77", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 8, "fields": {"password": "pbkdf2_sha256$30000$ttR0OnIjuhri$krb/jrcHOBOrK3xSU5Y1TBqrk+k+B6HNk9O0P2FkcIk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:24.184Z", "username": "beverly81", "name": "Debra Webb", "email": "juan@abata.org", "role": "App", "avatar": "", "wechat": "linda94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas ut massa quis augue luctus tincidunt.", "is_first_login": false, "date_expired": "2086-12-21T12:52:24.184Z", "created_by": "kathy77", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 9, "fields": {"password": "pbkdf2_sha256$30000$Hzlo1VFyYVIQ$8MFOZv+C7GBIKslNxhquyIfRWZRBSQQM+Qhy8hfCNo0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:24.342Z", "username": "katherine70", "name": "Mildred Frazier", "email": "paula@ntags.mil", "role": "App", "avatar": "", "wechat": "anne68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi ut odio.", "is_first_login": false, "date_expired": "2086-12-21T12:52:24.342Z", "created_by": "beverly81", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 10, "fields": {"password": "pbkdf2_sha256$30000$iCo9CCC0jf1Q$rfYoQJIWw6ahL1CbOHfReLkzuT4PGXEoiSi+Z75gKbk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:24.507Z", "username": "julia92", "name": "Samuel Alvarez", "email": "andrea@snaptags.name", "role": "User", "avatar": "", "wechat": "lillian65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "is_first_login": false, "date_expired": "2086-12-21T12:52:24.507Z", "created_by": "jessica94", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 11, "fields": {"password": "pbkdf2_sha256$30000$i8d2P75ayM1A$pEecKqJ8yTf6AmzyWEFXsjQ9mgsz4MHzDaBNh7yfxlA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:24.672Z", "username": "janice76", "name": "Brenda Jackson", "email": "karen@fatz.gov", "role": "Admin", "avatar": "", "wechat": "phyllis65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas rhoncus aliquam lacus.", "is_first_login": false, "date_expired": "2086-12-21T12:52:24.672Z", "created_by": "catherine66", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 12, "fields": {"password": "pbkdf2_sha256$30000$Jm1KQXFCsv9k$4lSsw65lqPFOx/CYlKYfMkjl2ASpZiOR44oULHaR3aM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:24.827Z", "username": "robin79", "name": "Melissa Burton", "email": "janice@yacero.biz", "role": "Admin", "avatar": "", "wechat": "sara88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas pulvinar lobortis est.", "is_first_login": false, "date_expired": "2086-12-21T12:52:24.827Z", "created_by": "janice76", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 13, "fields": {"password": "pbkdf2_sha256$30000$tmktFzVkg5xT$qTI0QYFy4+12OTb2q51g3YiF3eDWGkHSuEQsNEbu7pg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:24.984Z", "username": "nicole86", "name": "Janet Wood", "email": "randy@oyope.gov", "role": "App", "avatar": "", "wechat": "ruby78", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "is_first_login": false, "date_expired": "2086-12-21T12:52:24.984Z", "created_by": "beverly81", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 14, "fields": {"password": "pbkdf2_sha256$30000$E66KrMtBDjsW$Aago1zd54jlN9saa0LTxb1gh03qme/MNj8q7kNEVB0Y=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:25.139Z", "username": "karen66", "name": "Margaret Walker", "email": "helen@tazz.mil", "role": "App", "avatar": "", "wechat": "heather92", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse potenti.", "is_first_login": false, "date_expired": "2086-12-21T12:52:25.139Z", "created_by": "robin79", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 15, "fields": {"password": "pbkdf2_sha256$30000$76hmBy30Jbzf$6I3rr8C2MaVi0sTNlTDKI+/FcW1M+yp85WOzNqDQxjg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:25.296Z", "username": "maria87", "name": "Stephanie Mccoy", "email": "martha@skippad.mil", "role": "App", "avatar": "", "wechat": "kathleen83", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis consequat dui nec nisi volutpat eleifend.", "is_first_login": false, "date_expired": "2086-12-21T12:52:25.296Z", "created_by": "catherine66", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 16, "fields": {"password": "pbkdf2_sha256$30000$Liu6Gvbeu6VR$hhanNVCmdn/n1gZHG+TXC0GPDAB8m/0ib9i9RZPTFI0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:25.447Z", "username": "andrea78", "name": "Brenda Evans", "email": "barbara@devshare.com", "role": "Admin", "avatar": "", "wechat": "tina85", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus vestibulum sagittis sapien.", "is_first_login": false, "date_expired": "2086-12-21T12:52:25.447Z", "created_by": "julia92", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 17, "fields": {"password": "pbkdf2_sha256$30000$DAQFtiJXpEiP$vOF5X2H+zAUT7uhmCdUPFp2bJCqBtE2Kem3o3+L4IRE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:25.604Z", "username": "paula88", "name": "Helen Williams", "email": "melissa@ntags.name", "role": "User", "avatar": "", "wechat": "deborah70", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Phasellus in felis.", "is_first_login": false, "date_expired": "2086-12-21T12:52:25.604Z", "created_by": "beverly81", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 18, "fields": {"password": "pbkdf2_sha256$30000$SIcJNOHqqsr5$KqI2VpSR5RxOpOlH4bfMuFM9tD9Q5giIPsMT9RxmnL8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:25.761Z", "username": "jacqueline92", "name": "Robin Barnes", "email": "dorothy@twinder.org", "role": "Admin", "avatar": "", "wechat": "julia89", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque at nulla.", "is_first_login": false, "date_expired": "2086-12-21T12:52:25.761Z", "created_by": "katherine70", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 19, "fields": {"password": "pbkdf2_sha256$30000$QsZFHs3THlj7$zVV9OIOwD+gryUzZbo7pbxkv8uDKdcM1nSUszFfjmAs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:25.921Z", "username": "kelly78", "name": "Katherine Wright", "email": "barbara@demivee.gov", "role": "Admin", "avatar": "", "wechat": "frances64", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "is_first_login": false, "date_expired": "2086-12-21T12:52:25.921Z", "created_by": "andrea78", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 20, "fields": {"password": "pbkdf2_sha256$30000$Hd3cPufemVbQ$hQbvcLcMhtccQxfEKS/JhzlWDfp+vYpz/gqgTpHg4+Q=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:26.076Z", "username": "beverly76", "name": "Denise Simmons", "email": "kathleen@eire.org", "role": "App", "avatar": "", "wechat": "diana81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.", "is_first_login": false, "date_expired": "2086-12-21T12:52:26.076Z", "created_by": "admin", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 21, "fields": {"password": "pbkdf2_sha256$30000$hj8H7bt3qjk3$ORh74CK3rQ2T0gfU+Z6mgDtFU+Gc8vId/3MFLCJpP8g=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:26.234Z", "username": "janice65", "name": "Mildred Jackson", "email": "barbara@demizz.mil", "role": "Admin", "avatar": "", "wechat": "jean69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla.", "is_first_login": false, "date_expired": "2086-12-21T12:52:26.234Z", "created_by": "admin", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 22, "fields": {"password": "pbkdf2_sha256$30000$w7Qq1lxJrkQ6$BFSRk0ciwbV5UaN8mJPQvlACypQ2rBwJowJhWYCX07w=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:26.391Z", "username": "amy72", "name": "Katherine Ellis", "email": "gloria@trilia.gov", "role": "App", "avatar": "", "wechat": "beverly82", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec ut dolor.", "is_first_login": false, "date_expired": "2086-12-21T12:52:26.392Z", "created_by": "julia92", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 23, "fields": {"password": "pbkdf2_sha256$30000$eo9UMN24MT8l$tvjY2qxbzWdO4yK7EDIEU6xVloJ5RWwzwwRS3RkQ64E=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:26.550Z", "username": "tammy86", "name": "Gloria Gordon", "email": "linda@realmix.mil", "role": "User", "avatar": "", "wechat": "doris80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Praesent id massa id nisl venenatis lacinia.", "is_first_login": false, "date_expired": "2086-12-21T12:52:26.550Z", "created_by": "kathy77", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 24, "fields": {"password": "pbkdf2_sha256$30000$r4aPXYB5JEwH$cbjrQFni5zKeixgm0cUtb8M0JPbqI1ofMumwW/JGdao=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:26.714Z", "username": "mildred81", "name": "Joyce Alexander", "email": "anne@kare.mil", "role": "Admin", "avatar": "", "wechat": "evelyn80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque ut erat.", "is_first_login": false, "date_expired": "2086-12-21T12:52:26.714Z", "created_by": "andrea78", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 25, "fields": {"password": "pbkdf2_sha256$30000$T8m3qZIdAwOK$fLVf0XQikOEKVrHaNdWqBTuHA6+JmFjmXxUYXvIeTzg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:26.874Z", "username": "kelly66", "name": "Gloria Evans", "email": "angela@camido.biz", "role": "App", "avatar": "", "wechat": "mary94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas ut massa quis augue luctus tincidunt.", "is_first_login": false, "date_expired": "2086-12-21T12:52:26.874Z", "created_by": "angela85", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 26, "fields": {"password": "pbkdf2_sha256$30000$Si73ACdW4cYN$a8gN2oGANCivEplDGRuLmh66rSY5Y9aDr//yhi2qSqU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:27.032Z", "username": "annie65", "name": "Doris Perry", "email": "andrea@oba.info", "role": "User", "avatar": "", "wechat": "ann67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur gravida nisi at nibh.", "is_first_login": false, "date_expired": "2086-12-21T12:52:27.032Z", "created_by": "karen69", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 27, "fields": {"password": "pbkdf2_sha256$30000$hsVyzHgjIKPD$4poOFdTy2/1xkLNzTaYrPfqSULssdyNHHbhn2LtoHBI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:27.186Z", "username": "judy73", "name": "Kathryn Bradley", "email": "sara@devpoint.net", "role": "App", "avatar": "", "wechat": "pamela68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "is_first_login": false, "date_expired": "2086-12-21T12:52:27.186Z", "created_by": "kelly78", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 28, "fields": {"password": "pbkdf2_sha256$30000$F60bkMYvSb2l$tROlP/cKww1zzyiAcrW4gojTzX3DpUbOK1CbrFXKnwY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:27.340Z", "username": "laura93", "name": "Kimberly White", "email": "diana@oyoba.com", "role": "Admin", "avatar": "", "wechat": "patricia71", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla nisl.", "is_first_login": false, "date_expired": "2086-12-21T12:52:27.340Z", "created_by": "kelly78", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 29, "fields": {"password": "pbkdf2_sha256$30000$7XSV48tSQMJh$PAZAeBoPnErTvvCs6WSXgMmLg57i3qHEMjwbdVHy96E=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:27.645Z", "username": "amanda71", "name": "Alice Ruiz", "email": "denise@divanoodle.name", "role": "App", "avatar": "", "wechat": "sara69", "phone": "", "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce posuere felis sed lacus.", "is_first_login": false, "date_expired": "2086-12-21T12:52:00Z", "created_by": "admin", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 30, "fields": {"password": "pbkdf2_sha256$30000$QScIVNhIkxIB$jFudx33d/rDduGVzJo4ZI55E+fREIXqz89wOkDziGEM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:27.803Z", "username": "alice84", "name": "Diana Ramos", "email": "theresa@pixope.name", "role": "App", "avatar": "", "wechat": "shirley88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Suspendisse potenti.", "is_first_login": false, "date_expired": "2086-12-21T12:52:27.803Z", "created_by": "judy73", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 31, "fields": {"password": "pbkdf2_sha256$30000$kVVB9uC6NrJJ$bpY5xaRN+BhGL0yTJ0/ei8NxkIHfxP9ViujIX1irurI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:27.963Z", "username": "rachel83", "name": "Shirley Shaw", "email": "louise@fliptune.biz", "role": "User", "avatar": "", "wechat": "ann64", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean auctor gravida sem.", "is_first_login": false, "date_expired": "2086-12-21T12:52:27.963Z", "created_by": "kelly66", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 32, "fields": {"password": "pbkdf2_sha256$30000$u7bwV5CE9uH9$DzYPc65+vFVbxYZzKM5V4GpwNZLZjoNGAvHrWashP5w=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:28.120Z", "username": "catherine90", "name": "Brenda Richardson", "email": "ruby@abata.name", "role": "User", "avatar": "", "wechat": "elizabeth75", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec vitae nisi.", "is_first_login": false, "date_expired": "2086-12-21T12:52:28.120Z", "created_by": "janice65", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 33, "fields": {"password": "pbkdf2_sha256$30000$FNla6OSX7LMc$XrWSfpXUDepFZVH/6+OsEEwTX+LDoZ+VK8pN/2HIzwY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:28.280Z", "username": "norma66", "name": "Patricia Tucker", "email": "helen@pixope.org", "role": "App", "avatar": "", "wechat": "gloria76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "is_first_login": false, "date_expired": "2086-12-21T12:52:28.280Z", "created_by": "angela85", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 34, "fields": {"password": "pbkdf2_sha256$30000$G5iQIylHo27n$mvi8cu27ggUmIF00kL0MBAorugmprBkwLL0f5aVbfZU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:28.436Z", "username": "karen93", "name": "Sara Boyd", "email": "virginia@babbleblab.biz", "role": "User", "avatar": "", "wechat": "janet73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus tortor.", "is_first_login": false, "date_expired": "2086-12-21T12:52:28.436Z", "created_by": "admin", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 35, "fields": {"password": "pbkdf2_sha256$30000$rQcAevcNQL3t$akx7O5vu8QD/JNEaKqapu6vZn5YLdoHJDOstYSM3i7w=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:28.598Z", "username": "ann82", "name": "Julia Daniels", "email": "anne@twitternation.gov", "role": "Admin", "avatar": "", "wechat": "virginia65", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi porttitor lorem id ligula.", "is_first_login": false, "date_expired": "2086-12-21T12:52:28.598Z", "created_by": "andrea78", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 36, "fields": {"password": "pbkdf2_sha256$30000$uGBq4adRVnkX$CPqnV0RI5k86wvh5noOtBVxGzftqi6p/zvJqpBCxlVk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:28.761Z", "username": "christine89", "name": "Jessica Austin", "email": "louise@zoomzone.edu", "role": "User", "avatar": "", "wechat": "paula72", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque ut erat.", "is_first_login": false, "date_expired": "2086-12-21T12:52:28.761Z", "created_by": "katherine70", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 37, "fields": {"password": "pbkdf2_sha256$30000$7wbTCVyAEDDT$guEwB8Hl+dPMSwh1TzmWGrLAiz2c2S9HeM+9IGadtYU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:28.918Z", "username": "lillian91", "name": "Norma Kim", "email": "amanda@wikizz.edu", "role": "App", "avatar": "", "wechat": "carol82", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer a nibh.", "is_first_login": false, "date_expired": "2086-12-21T12:52:28.918Z", "created_by": "alice84", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 38, "fields": {"password": "pbkdf2_sha256$30000$azAapR0xFGBu$PB5RMgXYLES6TiSThT59TeCDOPnTSAYP31HgchmPo38=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:29.073Z", "username": "ann86", "name": "Carolyn Banks", "email": "ann@dynabox.net", "role": "App", "avatar": "", "wechat": "dorothy90", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In hac habitasse platea dictumst.", "is_first_login": false, "date_expired": "2086-12-21T12:52:29.073Z", "created_by": "julia92", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 39, "fields": {"password": "pbkdf2_sha256$30000$YA8pPZ0lcJak$vWEqah1Y8yyhxpCupRGfiK29T4rJIeVkgdKIhvmt9kI=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:29.230Z", "username": "sarah69", "name": "Christine Tucker", "email": "deborah@yambee.name", "role": "Admin", "avatar": "", "wechat": "emily90", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi sem mauris, laoreet ut, rhoncus aliquet, pulvinar sed, nisl.", "is_first_login": false, "date_expired": "2086-12-21T12:52:29.230Z", "created_by": "jessica94", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 40, "fields": {"password": "pbkdf2_sha256$30000$qNLSQ2zD1lds$sml2yDj6oAM7azoXD1vryd5HwFtaHmcL50lCZDyKjMQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:29.388Z", "username": "pamela77", "name": "Jessica Bowman", "email": "diana@vitz.net", "role": "User", "avatar": "", "wechat": "jacqueline77", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi.", "is_first_login": false, "date_expired": "2086-12-21T12:52:29.388Z", "created_by": "catherine90", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 41, "fields": {"password": "pbkdf2_sha256$30000$hxNvrviBAd7D$iC7gXK8M1WB02Tu5kJATJ/XHkjF60yUgs+eWKczlx4Y=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:29.543Z", "username": "carol66", "name": "Anna Cunningham", "email": "angela@oyope.net", "role": "Admin", "avatar": "", "wechat": "ann84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Phasellus id sapien in sapien iaculis congue.", "is_first_login": false, "date_expired": "2086-12-21T12:52:29.543Z", "created_by": "catherine66", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 42, "fields": {"password": "pbkdf2_sha256$30000$OeD2iwWeooPl$AXR90poGZSZkrpyDYM7ZVL8oJR4ZSocNPvLdfNlQPXw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:29.710Z", "username": "angela81", "name": "Lillian Lane", "email": "amanda@tagfeed.gov", "role": "App", "avatar": "", "wechat": "anne78", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nunc nisl.", "is_first_login": false, "date_expired": "2086-12-21T12:52:29.710Z", "created_by": "beverly81", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 43, "fields": {"password": "pbkdf2_sha256$30000$pBpixGH4t8l1$vZq5iHgntmwHEqEZU42S8SWlV/OmydEYcorzMQe1FnU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:29.866Z", "username": "katherine66", "name": "Shirley Cox", "email": "barbara@voonyx.gov", "role": "Admin", "avatar": "", "wechat": "joyce76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.", "is_first_login": false, "date_expired": "2086-12-21T12:52:29.866Z", "created_by": "annie65", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 44, "fields": {"password": "pbkdf2_sha256$30000$R9lgUFTKdwOz$pxeCoCv1dKCJ3CSO03bPIa3KtWVXlMcVXLwxqcpWgNA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:30.023Z", "username": "phyllis63", "name": "Carol Phillips", "email": "diana@meedoo.edu", "role": "Admin", "avatar": "", "wechat": "shirley88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Etiam vel augue.", "is_first_login": false, "date_expired": "2086-12-21T12:52:30.023Z", "created_by": "karen93", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 45, "fields": {"password": "pbkdf2_sha256$30000$O7USMR9UxQcc$b8R4MtRTWN8g7iTsFEc8666pv3sYYsA3EELhpJouSwM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:30.184Z", "username": "joan79", "name": "Jacqueline Howell", "email": "bonnie@photospace.org", "role": "App", "avatar": "", "wechat": "jean68", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi quis tortor id nulla ultrices aliquet.", "is_first_login": false, "date_expired": "2086-12-21T12:52:30.184Z", "created_by": "amanda70", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 46, "fields": {"password": "pbkdf2_sha256$30000$tfhhpP2F6OVd$ORCbPCQXZCmtAx3vJ/G6+ZuHdHxKdsFoLYc4/h/8xhM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:30.338Z", "username": "evelyn89", "name": "Tammy Scott", "email": "cheryl@oyoloo.org", "role": "User", "avatar": "", "wechat": "laura73", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec diam neque, vestibulum eget, vulputate ut, ultrices vel, augue.", "is_first_login": false, "date_expired": "2086-12-21T12:52:30.338Z", "created_by": "janice76", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 47, "fields": {"password": "pbkdf2_sha256$30000$PPiqVLrlzdW6$2VKJ8gPkoeK0MdGc4ID53dRd+Wui/+ooGu3PRp/g9gQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:30.494Z", "username": "louise71", "name": "Marilyn Jenkins", "email": "judy@edgeify.mil", "role": "App", "avatar": "", "wechat": "andrea84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce consequat.", "is_first_login": false, "date_expired": "2086-12-21T12:52:30.494Z", "created_by": "joan79", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 48, "fields": {"password": "pbkdf2_sha256$30000$w2ZrNpMmOX6a$6fmZIRAJwBLWHLKA7Wy2YTmSd0sVHRyWHVTe6I+riZY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:30.650Z", "username": "beverly64", "name": "Phyllis Garcia", "email": "lillian@realbridge.biz", "role": "User", "avatar": "", "wechat": "mary72", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam nulla.", "is_first_login": false, "date_expired": "2086-12-21T12:52:30.650Z", "created_by": "janice76", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 49, "fields": {"password": "pbkdf2_sha256$30000$HxZSMFnsv4Ek$BMFKazKnc4hqxaF3tRhhst7NvxYJ3/nNoyzOpq3PvII=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:30.804Z", "username": "judy93", "name": "Debra Jenkins", "email": "michelle@eazzy.info", "role": "User", "avatar": "", "wechat": "anne83", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.", "is_first_login": false, "date_expired": "2086-12-21T12:52:30.804Z", "created_by": "janice65", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 50, "fields": {"password": "pbkdf2_sha256$30000$wqiyDiEfjvrL$hjjzEal4ElxSAZJ0CC0bQFDaCotzEF6e3JwbqR/X1UY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:30.957Z", "username": "joyce82", "name": "Amy Reed", "email": "janice@voolith.biz", "role": "App", "avatar": "", "wechat": "robin75", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean sit amet justo.", "is_first_login": false, "date_expired": "2086-12-21T12:52:30.957Z", "created_by": "kelly66", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 51, "fields": {"password": "pbkdf2_sha256$30000$tg88PTs6h0Ii$ILSjXDiJIlC4O7pJwj/XWV6rFUzXAY12oXVlvxATa1M=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:31.116Z", "username": "sandra81", "name": "Lillian Payne", "email": "cheryl@linkbuzz.edu", "role": "App", "avatar": "", "wechat": "julie79", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.", "is_first_login": false, "date_expired": "2086-12-21T12:52:31.116Z", "created_by": "kelly78", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 52, "fields": {"password": "pbkdf2_sha256$30000$CruNvtP7dOvB$9KzqRVkQsSve9ptXGdsJTVeE9+BgMAUwhovJTEPRDAE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:31.280Z", "username": "jean73", "name": "Virginia Turner", "email": "susan@twitterlist.info", "role": "Admin", "avatar": "", "wechat": "sharon63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla dapibus dolor vel est.", "is_first_login": false, "date_expired": "2086-12-21T12:52:31.280Z", "created_by": "kathy77", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 53, "fields": {"password": "pbkdf2_sha256$30000$lx7rSljUmTUQ$CUSqr7UKUoXs/OP2DVnWl+ICeaEi0a3i11Uxt5xqSEw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:31.443Z", "username": "alice93", "name": "Patricia Ray", "email": "tammy@livepath.mil", "role": "User", "avatar": "", "wechat": "joan82", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "In quis justo.", "is_first_login": false, "date_expired": "2086-12-21T12:52:31.443Z", "created_by": "joan79", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 54, "fields": {"password": "pbkdf2_sha256$30000$llTppeKQ5OTB$U2i0VTCl9zbxeJTsgje3Rn3MJ7XoyweQZA60BwGgFA0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:31.602Z", "username": "alice77", "name": "Diana Griffin", "email": "gloria@meevee.org", "role": "User", "avatar": "", "wechat": "jessica86", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Duis at velit eu est congue elementum.", "is_first_login": false, "date_expired": "2086-12-21T12:52:31.602Z", "created_by": "laura93", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 55, "fields": {"password": "pbkdf2_sha256$30000$5xI7sT7s6TdH$dS3Wr2FlRaq7TiINiIo76h1xkcQL2jyaFirUiO2xWXM=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:31.768Z", "username": "alice86", "name": "Sandra Price", "email": "theresa@brainlounge.biz", "role": "User", "avatar": "", "wechat": "irene67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla facilisi.", "is_first_login": false, "date_expired": "2086-12-21T12:52:31.768Z", "created_by": "robin79", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 56, "fields": {"password": "pbkdf2_sha256$30000$KjeEox7RGgi7$q818zeHdhnWBTLd0TE2VqUvJddk6fai38TMOotLmYdo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:32.130Z", "username": "susan81", "name": "Martha Ellis", "email": "doris@dablist.name", "role": "Admin", "avatar": "", "wechat": "judith81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam congue, risus semper porta volutpat, quam pede lobortis ligula, sit amet eleifend pede libero quis orci.", "is_first_login": false, "date_expired": "2086-12-21T12:52:32.130Z", "created_by": "admin", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 57, "fields": {"password": "pbkdf2_sha256$30000$TeGYJw754qBz$ExxZf2zoqQ0+G44x0RzNASGwpRnXfJE3mDTUTM5w3Co=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:32.316Z", "username": "ruby86", "name": "Lillian Henry", "email": "paula@skimia.gov", "role": "User", "avatar": "", "wechat": "lisa64", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Maecenas tincidunt lacus at velit.", "is_first_login": false, "date_expired": "2086-12-21T12:52:32.316Z", "created_by": "ann82", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 58, "fields": {"password": "pbkdf2_sha256$30000$cQkJFr3ZTlfB$fzP468HCkphZApoT7ZNKgYhPJF/vFZ5oeTSqmi4LI+U=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:32.602Z", "username": "janice64", "name": "Catherine Taylor", "email": "deborah@rhynyx.gov", "role": "Admin", "avatar": "", "wechat": "kathleen88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer ac neque.", "is_first_login": false, "date_expired": "2086-12-21T12:52:32.602Z", "created_by": "evelyn89", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 59, "fields": {"password": "pbkdf2_sha256$30000$8B71milYawg5$dYJvDULSFcW11C/UuAB4TTNtBtZPwHxU9d3gs2TUbek=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:32.790Z", "username": "sarah83", "name": "Frances Murphy", "email": "tammy@tavu.biz", "role": "Admin", "avatar": "", "wechat": "christina63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "is_first_login": false, "date_expired": "2086-12-21T12:52:32.791Z", "created_by": "beverly76", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 60, "fields": {"password": "pbkdf2_sha256$30000$LtBKybiJ2q20$4pGyxfhLNf+wN6Flo+/YKexyNT8bqu/GNHsL9RxIj0k=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:32.973Z", "username": "anna89", "name": "Virginia Black", "email": "irene@kwilith.biz", "role": "User", "avatar": "", "wechat": "maria76", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean sit amet justo.", "is_first_login": false, "date_expired": "2086-12-21T12:52:32.973Z", "created_by": "beverly76", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 61, "fields": {"password": "pbkdf2_sha256$30000$yZq5QyHlU5m9$hj9t0M0gK8clW95GGdrMjRY+J00l9RoTtpzPKHL5SQs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:33.150Z", "username": "julie79", "name": "Jacqueline Austin", "email": "louise@dabfeed.biz", "role": "Admin", "avatar": "", "wechat": "donna81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla tempus.", "is_first_login": false, "date_expired": "2086-12-21T12:52:33.150Z", "created_by": "paula88", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 62, "fields": {"password": "pbkdf2_sha256$30000$WfKCFU6X0VkZ$QCMrUUMMyuqBMO9m/jNxBot656J+j3e2pCi3CXH5CeY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:33.332Z", "username": "sarah82", "name": "Ruby Diaz", "email": "carolyn@jabbersphere.name", "role": "App", "avatar": "", "wechat": "catherine66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque at nulla.", "is_first_login": false, "date_expired": "2086-12-21T12:52:33.333Z", "created_by": "catherine90", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 63, "fields": {"password": "pbkdf2_sha256$30000$FE3SjWCoXrsK$f9q7mftDUCo0pc2Uldt8EXddQDykjxDGdlcbT56layA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:33.511Z", "username": "elizabeth89", "name": "Kathleen Simpson", "email": "beverly@blogspan.biz", "role": "App", "avatar": "", "wechat": "teresa66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam dui.", "is_first_login": false, "date_expired": "2086-12-21T12:52:33.511Z", "created_by": "anna89", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 64, "fields": {"password": "pbkdf2_sha256$30000$LNzJwHfega6R$D4JFOQGleYEto6UoKFjCJCvKYnfooW15PbveajBkbdg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:33.670Z", "username": "carol76", "name": "Annie Ray", "email": "doris@skinte.gov", "role": "App", "avatar": "", "wechat": "anne92", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Fusce congue, diam id ornare imperdiet, sapien urna pretium nisl, ut volutpat sapien arcu sed augue.", "is_first_login": false, "date_expired": "2086-12-21T12:52:33.670Z", "created_by": "alice86", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 65, "fields": {"password": "pbkdf2_sha256$30000$W4LaaippsgHG$06mSsGuWdcfOKopupu87jKGGBnopwWRSgaetuK2gvUE=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:33.844Z", "username": "heather87", "name": "Melissa Jordan", "email": "sarah@roodel.edu", "role": "User", "avatar": "", "wechat": "lois78", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla neque libero, convallis eget, eleifend luctus, ultricies eu, nibh.", "is_first_login": false, "date_expired": "2086-12-21T12:52:33.844Z", "created_by": "judy93", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 66, "fields": {"password": "pbkdf2_sha256$30000$V40F9UBQ7kIh$79Mmu5Mr5d4xSJeox1tCxr0sGXPWpfcw8VNIYaGr04k=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:34.023Z", "username": "lillian76", "name": "Judy Ramirez", "email": "michelle@ntags.biz", "role": "Admin", "avatar": "", "wechat": "anna72", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec ut mauris eget massa tempor convallis.", "is_first_login": false, "date_expired": "2086-12-21T12:52:34.023Z", "created_by": "jessica94", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 67, "fields": {"password": "pbkdf2_sha256$30000$EitWtsVzBkwD$WLBwVYdrPaY406UNpcHOgGurcGXnqL0ezEmsAUeLHvc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:34.191Z", "username": "jennifer74", "name": "Shirley Lewis", "email": "evelyn@oba.info", "role": "Admin", "avatar": "", "wechat": "sara81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin at turpis a pede posuere nonummy.", "is_first_login": false, "date_expired": "2086-12-21T12:52:34.191Z", "created_by": "susan81", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 68, "fields": {"password": "pbkdf2_sha256$30000$pu9htijpdzFJ$a39FbTT8eS3FTIzGB5EnUApMfJ5UGecbMhvzyCVl1FY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:34.352Z", "username": "evelyn86", "name": "Beverly Armstrong", "email": "jessica@trunyx.biz", "role": "Admin", "avatar": "", "wechat": "margaret80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla justo.", "is_first_login": false, "date_expired": "2086-12-21T12:52:34.352Z", "created_by": "ann82", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 69, "fields": {"password": "pbkdf2_sha256$30000$EmaO9AD7S2R6$VjjM+HRxfGzTVsMu6Nbr2yCZgj42ZPZwQNmSStKyAfo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:34.691Z", "username": "judy80", "name": "Debra Ford", "email": "stephanie@vinte.info", "role": "Admin", "avatar": "", "wechat": "denise80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean auctor gravida sem.", "is_first_login": false, "date_expired": "2086-12-21T12:52:34.692Z", "created_by": "tammy86", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 70, "fields": {"password": "pbkdf2_sha256$30000$F8BFfWD00Kem$fwGYdZCPM8RQz4Dn/b8O2iZLlw/ZKriO+2lyyCj+MRU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:34.865Z", "username": "angela86", "name": "Lois Garrett", "email": "judith@photofeed.name", "role": "Admin", "avatar": "", "wechat": "maria69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec ut mauris eget massa tempor convallis.", "is_first_login": false, "date_expired": "2086-12-21T12:52:34.865Z", "created_by": "andrea78", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 71, "fields": {"password": "pbkdf2_sha256$30000$yuARiwRGX5KM$XGe+zvbDx7OgNevaQ1e+IQYzto9HGso4ArsAU2NPneY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:35.116Z", "username": "janet93", "name": "Frances Greene", "email": "maria@dynazzy.net", "role": "Admin", "avatar": "", "wechat": "karen67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer a nibh.", "is_first_login": false, "date_expired": "2086-12-21T12:52:35.116Z", "created_by": "pamela77", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 72, "fields": {"password": "pbkdf2_sha256$30000$cV4VdBuf34IH$FcmU2NNw1IPgMJB52lDcu1mgr5D2pspsJNI6Npu9NQk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:35.336Z", "username": "janice70", "name": "Phyllis Robinson", "email": "norma@zoombeat.edu", "role": "Admin", "avatar": "", "wechat": "stephanie88", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nunc rhoncus dui vel sem.", "is_first_login": false, "date_expired": "2086-12-21T12:52:35.336Z", "created_by": "kathy77", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 73, "fields": {"password": "pbkdf2_sha256$30000$WdsdwzsYISRj$Cdx+uX71Ve2oPUXw8qL+IwpaREoa6S998pDZ0+heLRs=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:35.511Z", "username": "teresa83", "name": "Theresa Brooks", "email": "amy@jayo.name", "role": "App", "avatar": "", "wechat": "jean63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque at nulla.", "is_first_login": false, "date_expired": "2086-12-21T12:52:35.511Z", "created_by": "judy73", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 74, "fields": {"password": "pbkdf2_sha256$30000$Y4bm1G8Y8UGA$fpYpO2Nmof8HY6H32ZlyTa1ynse96DbLM+v4wLVmFkc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:35.682Z", "username": "joyce83", "name": "Sara Stephens", "email": "michelle@youfeed.biz", "role": "User", "avatar": "", "wechat": "sandra74", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio.", "is_first_login": false, "date_expired": "2086-12-21T12:52:35.682Z", "created_by": "heather87", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 75, "fields": {"password": "pbkdf2_sha256$30000$zIQ5QlWXV6h3$u9wSHapv1vEZ96vHngXMdc2OyL+wn3OUg6PuDGSnrJw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:35.848Z", "username": "ann81", "name": "Doris Berry", "email": "doris@quatz.gov", "role": "App", "avatar": "", "wechat": "deborah86", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nulla tempus.", "is_first_login": false, "date_expired": "2086-12-21T12:52:35.848Z", "created_by": "lillian76", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 76, "fields": {"password": "pbkdf2_sha256$30000$MbwwujjXk5gr$kuw4CRByFRci+e5Sew6YbIHy1zoqoexdphSgg6ptuiQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:36.019Z", "username": "carolyn90", "name": "Lois Perry", "email": "frances@aibox.com", "role": "App", "avatar": "", "wechat": "heather80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec quis orci eget orci vehicula condimentum.", "is_first_login": false, "date_expired": "2086-12-21T12:52:36.019Z", "created_by": "teresa83", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 77, "fields": {"password": "pbkdf2_sha256$30000$HyaYhcYaDCYB$AZ8q5NszGhX5nyOT1TNpEqcaeKjM4cX6+LLKXqbElvQ=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:36.216Z", "username": "cynthia65", "name": "Heather Jacobs", "email": "helen@twitterlist.edu", "role": "Admin", "avatar": "", "wechat": "maria63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aenean auctor gravida sem.", "is_first_login": false, "date_expired": "2086-12-21T12:52:36.216Z", "created_by": "rachel83", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 78, "fields": {"password": "pbkdf2_sha256$30000$LkX2glKCejQw$sakufoenj9xKfZ4heQJLAs5pMQwYD3Upn6VlcmGmaEg=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:36.403Z", "username": "nicole64", "name": "Lori Warren", "email": "rose@skipfire.edu", "role": "Admin", "avatar": "", "wechat": "kelly69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam sit amet turpis elementum ligula vehicula consequat.", "is_first_login": false, "date_expired": "2086-12-21T12:52:36.403Z", "created_by": "amanda70", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 79, "fields": {"password": "pbkdf2_sha256$30000$zw5gvUH3knFc$3jrUQzmkuD9hIPpK7qJ9L8vmqezH4lZ6PlrstNDwFyk=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:36.579Z", "username": "teresa80", "name": "Christina Garza", "email": "andrea@skaboo.mil", "role": "App", "avatar": "", "wechat": "janet93", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.", "is_first_login": false, "date_expired": "2086-12-21T12:52:36.580Z", "created_by": "christine89", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 80, "fields": {"password": "pbkdf2_sha256$30000$tSoZS23M4RcP$QDCvzicGcYRX3ll7/QPHqk4q4m1DwHq8fcPWC9xwk1I=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:36.740Z", "username": "ann78", "name": "Janice Hernandez", "email": "maria@miboo.net", "role": "Admin", "avatar": "", "wechat": "louise80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nunc purus.", "is_first_login": false, "date_expired": "2086-12-21T12:52:36.740Z", "created_by": "tammy86", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 81, "fields": {"password": "pbkdf2_sha256$30000$qodF8b2rsUwI$P10Ne68RKyZMfBBDYI6FBbsKGqoBYAwTfsesACU9+B8=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:36.902Z", "username": "norma69", "name": "Rose Nichols", "email": "sharon@cogibox.biz", "role": "User", "avatar": "", "wechat": "debra86", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Ut at dolor quis odio consequat varius.", "is_first_login": false, "date_expired": "2086-12-21T12:52:36.902Z", "created_by": "lillian76", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 82, "fields": {"password": "pbkdf2_sha256$30000$kSn682qFdSQo$qnySA1YJIpwpYT77xP41DAfdxhWXwuux5/VV18Tc1pc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:37.065Z", "username": "andrea90", "name": "Maria Carter", "email": "norma@rhycero.org", "role": "App", "avatar": "", "wechat": "shirley80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Donec dapibus.", "is_first_login": false, "date_expired": "2086-12-21T12:52:37.065Z", "created_by": "catherine66", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 83, "fields": {"password": "pbkdf2_sha256$30000$uqLUdyj8ULjN$PO3VzMecerkrCL1x204DHBOBmRr4rrDYlJh94N97rV0=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:37.229Z", "username": "julia73", "name": "Elizabeth Kennedy", "email": "susan@wikibox.org", "role": "User", "avatar": "", "wechat": "ruby94", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ac est lacinia nisi venenatis tristique.", "is_first_login": false, "date_expired": "2086-12-21T12:52:37.229Z", "created_by": "carol76", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 84, "fields": {"password": "pbkdf2_sha256$30000$d0zO0S5eJ7Vj$ZqbKl1w5PLc8I1yVoJsaiSabzuZTKizurwUIwzIpzCc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:37.397Z", "username": "lisa74", "name": "Maria Walker", "email": "andrea@midel.name", "role": "User", "avatar": "", "wechat": "laura67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Pellentesque ultrices mattis odio.", "is_first_login": false, "date_expired": "2086-12-21T12:52:37.397Z", "created_by": "angela85", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 85, "fields": {"password": "pbkdf2_sha256$30000$lMcKNNYkTbe3$yDK3YYCr9vFtjNC1bR2smTO9GTyG12bS0+MWIbziMRc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:37.713Z", "username": "sara90", "name": "Norma Montgomery", "email": "bonnie@lajo.net", "role": "User", "avatar": "", "wechat": "ruby81", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam quis turpis eget elit sodales scelerisque.", "is_first_login": false, "date_expired": "2086-12-21T12:52:37.713Z", "created_by": "kathy77", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 86, "fields": {"password": "pbkdf2_sha256$30000$RItOrQzBf06n$VhqoFLlG6F2esOjt/PZmBsaZvJlTyI5dsajwSXVCx1A=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:37.875Z", "username": "robin80", "name": "Christina Simmons", "email": "jacqueline@rhyzio.name", "role": "Admin", "avatar": "", "wechat": "alice84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Curabitur at ipsum ac tellus semper interdum.", "is_first_login": false, "date_expired": "2086-12-21T12:52:37.875Z", "created_by": "angela86", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 87, "fields": {"password": "pbkdf2_sha256$30000$grbRl6fxuFcd$PwPRtf7Ir/a4K1WiKWNfdXZsFUDysK9pg+V9iBnkI5g=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:38.037Z", "username": "debra69", "name": "Julia Howell", "email": "stephanie@brainlounge.edu", "role": "User", "avatar": "", "wechat": "nicole91", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam tristique tortor eu pede.", "is_first_login": false, "date_expired": "2086-12-21T12:52:38.037Z", "created_by": "ann78", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 88, "fields": {"password": "pbkdf2_sha256$30000$t3OQuHszrevr$dds5JmCV9oAA/a0PMtvJ6j+gTzFQk6+U2gKyLv5EqNc=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:38.203Z", "username": "martha76", "name": "Nicole Bell", "email": "michelle@realpoint.net", "role": "App", "avatar": "", "wechat": "barbara84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec pharetra, magna vestibulum aliquet ultrices, erat tortor sollicitudin mi, sit amet lobortis sapien sapien non mi.", "is_first_login": false, "date_expired": "2086-12-21T12:52:38.203Z", "created_by": "alice84", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 89, "fields": {"password": "pbkdf2_sha256$30000$SLe6nPTTdkc7$V8vx2XTxptHqCryTCzqu33QZwLkASrsvbNDLU+/H6qo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:38.374Z", "username": "amanda75", "name": "Ashley Mendoza", "email": "marilyn@meevee.info", "role": "App", "avatar": "", "wechat": "stephanie83", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.", "is_first_login": false, "date_expired": "2086-12-21T12:52:38.374Z", "created_by": "ruby86", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 90, "fields": {"password": "pbkdf2_sha256$30000$MUkaDyYjimDW$VB9iQirPadB33Ddo4/fvG1A1n7XrcSOAdhYRFIcOIL4=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:38.550Z", "username": "marie81", "name": "Louise Hansen", "email": "phyllis@fliptune.net", "role": "User", "avatar": "", "wechat": "kathleen75", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Aliquam non mauris.", "is_first_login": false, "date_expired": "2086-12-21T12:52:38.550Z", "created_by": "alice86", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 91, "fields": {"password": "pbkdf2_sha256$30000$jywfr24yJ7av$sZQ2J9j9DNT9926NdOVkUDq5s+tOG9Ku2z1f46E2gFY=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:38.720Z", "username": "sara77", "name": "Amy Armstrong", "email": "kathleen@twinte.info", "role": "App", "avatar": "", "wechat": "marie69", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Nam dui.", "is_first_login": false, "date_expired": "2086-12-21T12:52:38.720Z", "created_by": "norma69", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 92, "fields": {"password": "pbkdf2_sha256$30000$ErSg6QiIIv6Y$rDVl4liwWVzUpJgpwV0NNlVzV7BnGZ1wQiStL7AoQXo=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:38.878Z", "username": "andrea76", "name": "Barbara Alexander", "email": "nancy@topiczoom.org", "role": "User", "avatar": "", "wechat": "rose80", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Proin at turpis a pede posuere nonummy.", "is_first_login": false, "date_expired": "2086-12-21T12:52:38.878Z", "created_by": "carol76", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 93, "fields": {"password": "pbkdf2_sha256$30000$hHj0RLZOrDyZ$NgfXqbNAf9yOJQ6Wwq0TqhfNO4lEO8mDobMs+GcvS0k=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:39.034Z", "username": "rose89", "name": "Helen Kelly", "email": "sandra@brainverse.biz", "role": "Admin", "avatar": "", "wechat": "emily67", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Quisque erat eros, viverra eget, congue eget, semper rutrum, nulla.", "is_first_login": false, "date_expired": "2086-12-21T12:52:39.034Z", "created_by": "julie79", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 94, "fields": {"password": "pbkdf2_sha256$30000$w7PrvuI8x9FD$jYBdtRm/i97vtnbhU3G2Ps6f0aQzUeqNScwMRP2Zpqw=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:39.193Z", "username": "alice82", "name": "Margaret Lopez", "email": "ruby@zoombeat.name", "role": "App", "avatar": "", "wechat": "carolyn66", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Praesent blandit.", "is_first_login": false, "date_expired": "2086-12-21T12:52:39.193Z", "created_by": "jessica94", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 95, "fields": {"password": "pbkdf2_sha256$30000$bihp9lOWgk9j$SxJ7HcHPBS1bXVWTuWyTKFMJhbqBXcK09gBpyEkcHeU=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:39.351Z", "username": "patricia82", "name": "Anna Bradley", "email": "diane@jabberstorm.gov", "role": "App", "avatar": "", "wechat": "frances84", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Morbi porttitor lorem id ligula.", "is_first_login": false, "date_expired": "2086-12-21T12:52:39.352Z", "created_by": "rachel83", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 96, "fields": {"password": "pbkdf2_sha256$30000$KvBh6zMbJgu7$AHAwvZvZUTYhlK5J7/d2W8GU4t5bQl+Jw/mAUkdQRVA=", "last_login": null, "first_name": "", "last_name": "", "is_active": true, "date_joined": "2017-01-07T12:52:39.508Z", "username": "judith78", "name": "Bonnie Sims", "email": "ruby@leexo.biz", "role": "User", "avatar": "", "wechat": "andrea63", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit.", "is_first_login": false, "date_expired": "2086-12-21T12:52:39.508Z", "created_by": "paula88", "user_permissions": [], "groups": []}}, {"model": "users.user", "pk": 97, "fields": {"password": "", "last_login": null, "first_name": "", "last_name": "", "is_active": false, "date_joined": "2017-01-07T13:35:54.890Z", "username": "luna", "name": "luna", "email": "luna@jumpserver.org", "role": "App", "avatar": "", "wechat": "", "phone": null, "enable_otp": false, "secret_key_otp": "", "_private_key": "", "_public_key": "", "comment": "", "is_first_login": false, "date_expired": "2086-12-21T13:35:54.890Z", "created_by": "System", "user_permissions": [], "groups": []}}, {"model": "applications.terminal", "pk": 1, "fields": {"name": "luna", "remote_addr": "127.0.0.1", "type": "Web", "user": null, "url": "", "is_accepted": true, "date_created": "2017-01-07T13:35:54.880Z", "comment": ""}}] \ No newline at end of file diff --git a/utils/make_fake_json.sh b/utils/make_fake_json.sh index 10fa79a52..cd4b462d5 100644 --- a/utils/make_fake_json.sh +++ b/utils/make_fake_json.sh @@ -2,9 +2,9 @@ # python ../apps/manage.py shell << EOF -from users.models import * +from users.models.utils import * generate_fake() -from assets.models import * +from assets.models.utils import * generate_fake() EOF