content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
class Agent(object):
def __init__(self):
raise NotImplementedError
# def build_agent(self):
# raise NotImplementedError
def train(self):
raise NotImplementedError
def play(self):
raise NotImplementedError
| class Agent(object):
def __init__(self):
raise NotImplementedError
def train(self):
raise NotImplementedError
def play(self):
raise NotImplementedError |
#!/usr/bin/env python
NAME = 'F5 FirePass'
def is_waf(self):
if self.matchheader(('Location', '\/my\.logon\.php3')) and self.matchcookie('^VHOST'):
return True
elif self.matchcookie('^MRHSession') and (self.matchcookie('^VHOST') or self.matchcookie('^uRoamTestCookie')):
return True
elif self.matchcookie('^MRHSession') and (self.matchcookie('^MRHCId') or self.matchcookie('^MRHIntranetSession')):
return True
elif self.matchcookie('^uRoamTestCookie') or self.matchcookie('^VHOST'):
return True
else:
return False | name = 'F5 FirePass'
def is_waf(self):
if self.matchheader(('Location', '\\/my\\.logon\\.php3')) and self.matchcookie('^VHOST'):
return True
elif self.matchcookie('^MRHSession') and (self.matchcookie('^VHOST') or self.matchcookie('^uRoamTestCookie')):
return True
elif self.matchcookie('^MRHSession') and (self.matchcookie('^MRHCId') or self.matchcookie('^MRHIntranetSession')):
return True
elif self.matchcookie('^uRoamTestCookie') or self.matchcookie('^VHOST'):
return True
else:
return False |
# Copyright 2019-2021 Hewlett Packard Enterprise Development LP
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
INTERFACE_TYPE_SAS = 'sas'
INTERFACE_TYPE_SCSI = 'scsi'
INTERFACE_TYPE_SATA = 'sata'
INTERFACE_TYPE_NVME = 'nvme'
DISK_TYPE_HDD = 'hdd'
DISK_TYPE_SSD = 'ssd'
RAID_0 = '0'
RAID_1 = '1'
RAID_10 = '1+0'
RAID_5 = '5'
RAID_6 = '6'
RAID_50 = '5+0'
RAID_60 = '6+0'
# Below are not supported in Ironic now.
RAID_1_ADM = '1ADM'
RAID_10_ADM = '10ADM'
RAID_LEVEL_INPUT_TO_HPSSA_MAPPING = {RAID_50: '50', RAID_60: '60'}
RAID_LEVEL_HPSSA_TO_INPUT_MAPPING = {
v: k for k, v in RAID_LEVEL_INPUT_TO_HPSSA_MAPPING.items()}
INTERFACE_TYPE_MAP = {'SCSI': INTERFACE_TYPE_SCSI,
'SAS': INTERFACE_TYPE_SAS,
'SATA': INTERFACE_TYPE_SATA,
'NVMe': INTERFACE_TYPE_NVME,
'SATASSD': INTERFACE_TYPE_SATA,
'SASSSD': INTERFACE_TYPE_SAS,
'NVMe SSD': INTERFACE_TYPE_NVME,
'Solid State SAS': INTERFACE_TYPE_SAS,
'Solid State SATA': INTERFACE_TYPE_SATA,
'Solid State NVMe': INTERFACE_TYPE_NVME}
DISK_TYPE_MAP = {'SCSI': DISK_TYPE_HDD,
'SAS': DISK_TYPE_HDD,
'SATA': DISK_TYPE_HDD,
'SATASSD': DISK_TYPE_SSD,
'SASSSD': DISK_TYPE_SSD,
'NVMe SSD': DISK_TYPE_SSD,
'Solid State SAS': DISK_TYPE_SSD,
'Solid State SATA': DISK_TYPE_SSD,
'Solid State NVMe': DISK_TYPE_SSD}
RAID_LEVEL_MIN_DISKS = {RAID_0: 1,
RAID_1: 2,
RAID_1_ADM: 3,
RAID_5: 3,
RAID_6: 4,
RAID_10: 4,
RAID_50: 6,
RAID_60: 8}
MINIMUM_DISK_SIZE = 1
def get_interface_type(ssa_interface):
return INTERFACE_TYPE_MAP[ssa_interface]
def get_disk_type(ssa_interface):
return DISK_TYPE_MAP[ssa_interface]
| interface_type_sas = 'sas'
interface_type_scsi = 'scsi'
interface_type_sata = 'sata'
interface_type_nvme = 'nvme'
disk_type_hdd = 'hdd'
disk_type_ssd = 'ssd'
raid_0 = '0'
raid_1 = '1'
raid_10 = '1+0'
raid_5 = '5'
raid_6 = '6'
raid_50 = '5+0'
raid_60 = '6+0'
raid_1_adm = '1ADM'
raid_10_adm = '10ADM'
raid_level_input_to_hpssa_mapping = {RAID_50: '50', RAID_60: '60'}
raid_level_hpssa_to_input_mapping = {v: k for (k, v) in RAID_LEVEL_INPUT_TO_HPSSA_MAPPING.items()}
interface_type_map = {'SCSI': INTERFACE_TYPE_SCSI, 'SAS': INTERFACE_TYPE_SAS, 'SATA': INTERFACE_TYPE_SATA, 'NVMe': INTERFACE_TYPE_NVME, 'SATASSD': INTERFACE_TYPE_SATA, 'SASSSD': INTERFACE_TYPE_SAS, 'NVMe SSD': INTERFACE_TYPE_NVME, 'Solid State SAS': INTERFACE_TYPE_SAS, 'Solid State SATA': INTERFACE_TYPE_SATA, 'Solid State NVMe': INTERFACE_TYPE_NVME}
disk_type_map = {'SCSI': DISK_TYPE_HDD, 'SAS': DISK_TYPE_HDD, 'SATA': DISK_TYPE_HDD, 'SATASSD': DISK_TYPE_SSD, 'SASSSD': DISK_TYPE_SSD, 'NVMe SSD': DISK_TYPE_SSD, 'Solid State SAS': DISK_TYPE_SSD, 'Solid State SATA': DISK_TYPE_SSD, 'Solid State NVMe': DISK_TYPE_SSD}
raid_level_min_disks = {RAID_0: 1, RAID_1: 2, RAID_1_ADM: 3, RAID_5: 3, RAID_6: 4, RAID_10: 4, RAID_50: 6, RAID_60: 8}
minimum_disk_size = 1
def get_interface_type(ssa_interface):
return INTERFACE_TYPE_MAP[ssa_interface]
def get_disk_type(ssa_interface):
return DISK_TYPE_MAP[ssa_interface] |
class Registry (object):
def __init__ (self):
self.__USES__ = { }
def get_uses (self, device, config):
all_uses = sorted(self.__USES__.values( ), key=lambda usage: getattr(usage, 'sortOrder', usage.__name__))
#all_uses.sort(key=lambda usage: getattr(usage, 'sortOrder', usage.__name__))
return all_uses
def __call__ (self):
def decorator (cls):
if cls.__name__ not in self.__USES__:
self.__USES__[cls.__name__] = cls
return cls
return decorator
| class Registry(object):
def __init__(self):
self.__USES__ = {}
def get_uses(self, device, config):
all_uses = sorted(self.__USES__.values(), key=lambda usage: getattr(usage, 'sortOrder', usage.__name__))
return all_uses
def __call__(self):
def decorator(cls):
if cls.__name__ not in self.__USES__:
self.__USES__[cls.__name__] = cls
return cls
return decorator |
class Solution:
def alienOrder(self, words: list[str]) -> str:
adj = {c: set() for w in words for c in w}
for i in range(len(words) - 1):
w1, w2 = words[i], words[i + 1]
minLen = min(len(w1), len(w2))
if len(w1) > len(w2) and w1[:minLen] == w2[:minLen]:
return ""
for j in range(minLen):
if w1[j] != w2[j]:
adj[w1[j]].add(w2[j])
break
visit = {} # False = Visited, True = CurrentPath
result = []
def dfs(c):
if c in visit:
return visit[c]
visit[c] = True
for nei in adj[c]:
if dfs(nei):
return True
visit[c] = False
result.append(c)
for c in adj:
if dfs(c):
return ""
result.reverse()
return "".join(result)
| class Solution:
def alien_order(self, words: list[str]) -> str:
adj = {c: set() for w in words for c in w}
for i in range(len(words) - 1):
(w1, w2) = (words[i], words[i + 1])
min_len = min(len(w1), len(w2))
if len(w1) > len(w2) and w1[:minLen] == w2[:minLen]:
return ''
for j in range(minLen):
if w1[j] != w2[j]:
adj[w1[j]].add(w2[j])
break
visit = {}
result = []
def dfs(c):
if c in visit:
return visit[c]
visit[c] = True
for nei in adj[c]:
if dfs(nei):
return True
visit[c] = False
result.append(c)
for c in adj:
if dfs(c):
return ''
result.reverse()
return ''.join(result) |
# -*- coding: utf-8 -*-
'''
File name: code\digit_fifth_powers\sol_30.py
Author: Vaidic Joshi
Date created: Oct 20, 2018
Python Version: 3.x
'''
# Solution to Project Euler Problem #30 :: Digit fifth powers
#
# For more information see:
# https://projecteuler.net/problem=30
# Problem Statement
'''
Surprisingly there are only three numbers that can be written as the sum of fourth powers of their digits:
1634 = 14 + 64 + 34 + 44
8208 = 84 + 24 + 04 + 84
9474 = 94 + 44 + 74 + 44
As 1 = 14 is not a sum it is not included.
The sum of these numbers is 1634 + 8208 + 9474 = 19316.
Find the sum of all the numbers that can be written as the sum of fifth powers of their digits.
'''
# Solution
# Solution Approach
'''
'''
| """
File name: code\\digit_fifth_powers\\sol_30.py
Author: Vaidic Joshi
Date created: Oct 20, 2018
Python Version: 3.x
"""
'\nSurprisingly there are only three numbers that can be written as the sum of fourth powers of their digits:\n1634 = 14 + 64 + 34 + 44\n8208 = 84 + 24 + 04 + 84\n9474 = 94 + 44 + 74 + 44\nAs 1 = 14 is not a sum it is not included.\nThe sum of these numbers is 1634 + 8208 + 9474 = 19316.\nFind the sum of all the numbers that can be written as the sum of fifth powers of their digits.\n'
'\n' |
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def isValidSequence(self, root: TreeNode, arr: List[int]) -> bool:
def dfs(root, pos):
if not root or root.val != arr[pos]:
return False
if pos == len(arr) - 1:
return not root.left and not root.right
return dfs(root.left, pos + 1) or dfs(root.right, pos + 1)
return dfs(root, 0)
| class Solution:
def is_valid_sequence(self, root: TreeNode, arr: List[int]) -> bool:
def dfs(root, pos):
if not root or root.val != arr[pos]:
return False
if pos == len(arr) - 1:
return not root.left and (not root.right)
return dfs(root.left, pos + 1) or dfs(root.right, pos + 1)
return dfs(root, 0) |
# Version
CURRENT_VERSION = "v0.0.2b"
# Command prefix
COMMAND_PREFIX = "s!"
# Location of secrets.json where the discord bot token is located.
SECRETS_FILE = "secrets.json"
# Location of resources
ASSETS_DIRECTORY = "assets/"
# Logging format
LOGGING_FORMAT = "(%(asctime)s) [%(levelname)s] - %(message)s"
# Cogs in use
ACTIVE_COGS = [
"cogs.admin",
"cogs.core",
"cogs.economy",
"cogs.farm",
]
ACTIVE_OBJECTS = [
"objects.economy.account",
"objects.economy.transaction",
"objects.economy.farm.farm",
"objects.economy.farm.harvest",
"objects.economy.farm.plot",
"objects.economy.farm.plant",
]
ACTIVE_SEEDERS = [
"objects.economy.farm.seeders.plant",
]
# Economy
TRANSFER_TAX = 0.01
# Farms
PLANT_PRICE_GRAPH_DIRECTORY = ASSETS_DIRECTORY+"graphs/plant_prices/"
BASE_PLOT_PRICE = 500000
PLOT_PRICE_FACTOR = 1.45
BASE_STORAGE_UPGRADE_PRICE = 500000
STORAGE_UPGRADE_PRICE_FACTOR = 1.1
FARM_NAME_CHANGE_PRICE = 1000000
FARM_PLOTS_MAX = 1000
DEMAND_DIVISOR = 1
| current_version = 'v0.0.2b'
command_prefix = 's!'
secrets_file = 'secrets.json'
assets_directory = 'assets/'
logging_format = '(%(asctime)s) [%(levelname)s] - %(message)s'
active_cogs = ['cogs.admin', 'cogs.core', 'cogs.economy', 'cogs.farm']
active_objects = ['objects.economy.account', 'objects.economy.transaction', 'objects.economy.farm.farm', 'objects.economy.farm.harvest', 'objects.economy.farm.plot', 'objects.economy.farm.plant']
active_seeders = ['objects.economy.farm.seeders.plant']
transfer_tax = 0.01
plant_price_graph_directory = ASSETS_DIRECTORY + 'graphs/plant_prices/'
base_plot_price = 500000
plot_price_factor = 1.45
base_storage_upgrade_price = 500000
storage_upgrade_price_factor = 1.1
farm_name_change_price = 1000000
farm_plots_max = 1000
demand_divisor = 1 |
# By Kami Bigdely
# Remove assignment to method parameter.
class Distance:
def __init__(self, value, unit):
self.unit = unit
self.value = value
class Mass:
def __init__(self, value, unit):
self.value = value
self.unit = unit
def calculate_kinetic_energy(mass, distance, time):
massVal = mass.value
massUnit = mass.unit
distanceUnit = distance.unit
distanceValue = distance.value
if distanceUnit != 'km':
if distanceUnit == "ly": # [ly] stands for light-year (measure of distance in astronomy)
# convert from light-year to km unit
in_km = distanceValue * 9.461e12
distanceValue = in_km
distanceUnit = 'km'
else:
print ("unit is Unknown")
return
speed = distanceValue/time # [km per sec]
if massUnit != 'kg':
if massUnit == "solar-mass":
# convert from solar mass to kg
value = massVal * 1.98892e30 # [kg]
massVal = value
massUnit = 'kg'
else:
print ("unit is Unknown")
return
return 0.5 * massVal * speed ** 2
mass = Mass(2, "solar-mass")
distance = Distance(2, 'ly')
print(calculate_kinetic_energy(mass, distance, 3600e20))
| class Distance:
def __init__(self, value, unit):
self.unit = unit
self.value = value
class Mass:
def __init__(self, value, unit):
self.value = value
self.unit = unit
def calculate_kinetic_energy(mass, distance, time):
mass_val = mass.value
mass_unit = mass.unit
distance_unit = distance.unit
distance_value = distance.value
if distanceUnit != 'km':
if distanceUnit == 'ly':
in_km = distanceValue * 9461000000000.0
distance_value = in_km
distance_unit = 'km'
else:
print('unit is Unknown')
return
speed = distanceValue / time
if massUnit != 'kg':
if massUnit == 'solar-mass':
value = massVal * 1.98892e+30
mass_val = value
mass_unit = 'kg'
else:
print('unit is Unknown')
return
return 0.5 * massVal * speed ** 2
mass = mass(2, 'solar-mass')
distance = distance(2, 'ly')
print(calculate_kinetic_energy(mass, distance, 3.6e+23)) |
# 848. Shifting Letters
class Solution:
def shiftingLetters(self, S: str, shifts) -> str:
i = len(S)-2
shifts[-1] %= 26
while i >= 0:
shifts[i] = (shifts[i] + shifts[i+1]) % 26
i -= 1
ans = []
for i, ch in enumerate(S):
ans.append(chr((ord(ch) - 97 + shifts[i]) % 26 + 97))
return ''.join(ans)
print(Solution().shiftingLetters("bad", [10,20,30]))
print(Solution().shiftingLetters("ruu", [26,9,17])) | class Solution:
def shifting_letters(self, S: str, shifts) -> str:
i = len(S) - 2
shifts[-1] %= 26
while i >= 0:
shifts[i] = (shifts[i] + shifts[i + 1]) % 26
i -= 1
ans = []
for (i, ch) in enumerate(S):
ans.append(chr((ord(ch) - 97 + shifts[i]) % 26 + 97))
return ''.join(ans)
print(solution().shiftingLetters('bad', [10, 20, 30]))
print(solution().shiftingLetters('ruu', [26, 9, 17])) |
# __author__ = "Mio"
# __email__: "liurusi.101@gmail.com"
# created: 4/22/21 1:07 PM
VERSION = "0.0.1"
| version = '0.0.1' |
class BaseExecutor:
def __init__(self):
pass
def start(self):
raise NotImplementedError()
def execute_async(self, task, *args, **kwargs):
raise NotImplementedError()
def stop(self):
raise NotImplementedError()
| class Baseexecutor:
def __init__(self):
pass
def start(self):
raise not_implemented_error()
def execute_async(self, task, *args, **kwargs):
raise not_implemented_error()
def stop(self):
raise not_implemented_error() |
#
# PySNMP MIB module NMS-CONFIG-MGMT (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/NMS-CONFIG-MGMT
# Produced by pysmi-0.3.4 at Mon Apr 29 20:11:46 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint, ConstraintsUnion, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsUnion", "ValueSizeConstraint")
nmsWorkGroup, = mibBuilder.importSymbols("NMS-SMI", "nmsWorkGroup")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
Bits, iso, Unsigned32, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, IpAddress, ObjectIdentity, NotificationType, Gauge32, ModuleIdentity, Counter64, Integer32, TimeTicks, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "iso", "Unsigned32", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "IpAddress", "ObjectIdentity", "NotificationType", "Gauge32", "ModuleIdentity", "Counter64", "Integer32", "TimeTicks", "Counter32")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
linmsm = MibIdentifier((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15))
configuration = MibIdentifier((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15, 1))
operation = MibScalar((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: operation.setStatus('mandatory')
result = MibScalar((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setMaxAccess("readonly")
if mibBuilder.loadTexts: result.setStatus('mandatory')
mibBuilder.exportSymbols("NMS-CONFIG-MGMT", configuration=configuration, linmsm=linmsm, operation=operation, result=result)
| (object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, value_range_constraint, single_value_constraint, constraints_union, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueSizeConstraint')
(nms_work_group,) = mibBuilder.importSymbols('NMS-SMI', 'nmsWorkGroup')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(bits, iso, unsigned32, mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, ip_address, object_identity, notification_type, gauge32, module_identity, counter64, integer32, time_ticks, counter32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Bits', 'iso', 'Unsigned32', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'IpAddress', 'ObjectIdentity', 'NotificationType', 'Gauge32', 'ModuleIdentity', 'Counter64', 'Integer32', 'TimeTicks', 'Counter32')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
linmsm = mib_identifier((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15))
configuration = mib_identifier((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15, 1))
operation = mib_scalar((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 127))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
operation.setStatus('mandatory')
result = mib_scalar((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 127))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
result.setStatus('mandatory')
mibBuilder.exportSymbols('NMS-CONFIG-MGMT', configuration=configuration, linmsm=linmsm, operation=operation, result=result) |
def test(t):
print(x)
t = 20
print ("In Function :", t)
x = 10
test(x)
print(t) | def test(t):
print(x)
t = 20
print('In Function :', t)
x = 10
test(x)
print(t) |
class Solution:
def rotate(self, nums: List[int], k: int) -> None:
for i in range(k):
lastValue = nums.pop()
nums.insert(0, lastValue)
return nums
| class Solution:
def rotate(self, nums: List[int], k: int) -> None:
for i in range(k):
last_value = nums.pop()
nums.insert(0, lastValue)
return nums |
class News:
#the class that defines news objets
def __init__(self, author, title, description, url, urlToImage, publishedAt):
self.author = author
self.title = title
self.description = description
self.url = url
self.urlToImage = urlToImage
self.publishedAt = publishedAt
class Source:
#the class that defines the source of objects
def __init__(self, id, name, url):
self.id = id
self.name = name
self.url = url
class Category:
#the class tha defines the categories of the objects
def __init__(self, title, description, url , urlToImage, publishedAt):
self.title = title
self.description = description
self.url = url
self.urlToImage = urlToImage
self.publishedAt = publishedAt | class News:
def __init__(self, author, title, description, url, urlToImage, publishedAt):
self.author = author
self.title = title
self.description = description
self.url = url
self.urlToImage = urlToImage
self.publishedAt = publishedAt
class Source:
def __init__(self, id, name, url):
self.id = id
self.name = name
self.url = url
class Category:
def __init__(self, title, description, url, urlToImage, publishedAt):
self.title = title
self.description = description
self.url = url
self.urlToImage = urlToImage
self.publishedAt = publishedAt |
# encoding:utf-8
# This file implements a graph directed with weight
# The graph not supports multiple edges with the same extremes (same output node and same input node)
# Author: Marcos Castro
# class that represents a node
class Node:
def __init__(self, key):
# self.key is the key of node (unique)
# self.successors are the successors nodes
# self.weight_successors represents weight of edges
self.key, self.successors, self.weight_successors = key, [], {}
# return the key
def getKey(self):
return self.key
# return the successors of node
def getSuccessors(self):
return self.successors
# add a node successor passing the node and the weight
def addSuccessor(self, node, weight):
# adds if successor node not exists
if node.getKey() not in self.weight_successors:
self.successors.append(node)
self.weight_successors[node.getKey()] = weight
# returns weight of successors
def getWeightSuccessors(self):
return self.weight_successors
# class that represents a graph
class Graph:
def __init__(self):
self.nodes = {} # key: key of node, value: instance of Node
# adds a node in the graph passing a key
def addNode(self, key_node):
if key_node in self.nodes: # checks if the key already exists
print('Error: key %s already exists!!' % key_node)
else:
node = Node(key_node) # creates a instance of Node
self.nodes[key_node] = node # stores the node
# connects the nodes
def connect(self, key_source, key_destination, weight):
# checks if the keys exists in the graph
if key_source in self.nodes and key_destination in self.nodes:
if key_source != key_destination: # checks if the keys are differents
if weight > 0: # checks if the weight is positive
# connects the nodes
self.nodes[key_source].addSuccessor(self.nodes[key_destination], weight)
else:
print('Error: weight negative!!')
else:
print('Error: same keys!!')
else:
print('Error: key not exists!!')
# returns weight of edge
def getWeightEdge(self, key_source, key_successor):
if key_source in self.nodes and key_successor in self.nodes: # checks if the keys exists
if key_source != key_successor: # checks if the keys are differents
weight_successors = self.nodes[key_source].getWeightSuccessors()
if key_successor in weight_successors: # checks if key_successor is a successor
return weight_successors[key_successor] # returns the weight
else:
print('Error: successor not exists!!')
else:
print('Error: same keys!!')
else:
print('Error: key not exists!!')
# returns the keys of all successors of a node
def getSuccessors(self, key_node):
if key_node in self.nodes:
nodes = self.nodes[key_node].getSuccessors()
keys_successors = [node.getKey() for node in nodes]
return keys_successors
else:
print('Error: key not exists!!')
# returns all nodes
def getNodes(self):
return self.nodes | class Node:
def __init__(self, key):
(self.key, self.successors, self.weight_successors) = (key, [], {})
def get_key(self):
return self.key
def get_successors(self):
return self.successors
def add_successor(self, node, weight):
if node.getKey() not in self.weight_successors:
self.successors.append(node)
self.weight_successors[node.getKey()] = weight
def get_weight_successors(self):
return self.weight_successors
class Graph:
def __init__(self):
self.nodes = {}
def add_node(self, key_node):
if key_node in self.nodes:
print('Error: key %s already exists!!' % key_node)
else:
node = node(key_node)
self.nodes[key_node] = node
def connect(self, key_source, key_destination, weight):
if key_source in self.nodes and key_destination in self.nodes:
if key_source != key_destination:
if weight > 0:
self.nodes[key_source].addSuccessor(self.nodes[key_destination], weight)
else:
print('Error: weight negative!!')
else:
print('Error: same keys!!')
else:
print('Error: key not exists!!')
def get_weight_edge(self, key_source, key_successor):
if key_source in self.nodes and key_successor in self.nodes:
if key_source != key_successor:
weight_successors = self.nodes[key_source].getWeightSuccessors()
if key_successor in weight_successors:
return weight_successors[key_successor]
else:
print('Error: successor not exists!!')
else:
print('Error: same keys!!')
else:
print('Error: key not exists!!')
def get_successors(self, key_node):
if key_node in self.nodes:
nodes = self.nodes[key_node].getSuccessors()
keys_successors = [node.getKey() for node in nodes]
return keys_successors
else:
print('Error: key not exists!!')
def get_nodes(self):
return self.nodes |
# noinspection PyUnusedLocal
# friend_name = unicode string
def hello(friend_name):
if not isinstance(friend_name, str):
raise TypeError("A string was not provided as friend name.")
return "".join(["Hello, ", friend_name, "!"])
| def hello(friend_name):
if not isinstance(friend_name, str):
raise type_error('A string was not provided as friend name.')
return ''.join(['Hello, ', friend_name, '!']) |
'''
Austin Richards 2/13/21
A text exercise from ch. 6 which will take
a list of lists and print it in a nice-looking
grid with each column righ-justified.
'''
def printTable(tableData, title):
col_width = [0] * len(tableData)
lengths = [[], [], []]
for i in range(len(tableData)):
for item in tableData[i]:
lengths[i].append(len(item))
col_width[i] = max(lengths[i])
title = title.center(sum(col_width) + 2, '-')
print(title)
for y in range(len(tableData[0])):
for x in range(len(tableData)):
print(tableData[x][y].rjust(col_width[x]), end=' ')
print('')
tableData = [['apples', 'oranges', 'cherries', 'banana'],
['Alice', 'Bob', 'Carol', 'David'],
['dogs', 'cats', 'moose', 'goose']]
title = 'Items'
printTable(tableData, title)
| """
Austin Richards 2/13/21
A text exercise from ch. 6 which will take
a list of lists and print it in a nice-looking
grid with each column righ-justified.
"""
def print_table(tableData, title):
col_width = [0] * len(tableData)
lengths = [[], [], []]
for i in range(len(tableData)):
for item in tableData[i]:
lengths[i].append(len(item))
col_width[i] = max(lengths[i])
title = title.center(sum(col_width) + 2, '-')
print(title)
for y in range(len(tableData[0])):
for x in range(len(tableData)):
print(tableData[x][y].rjust(col_width[x]), end=' ')
print('')
table_data = [['apples', 'oranges', 'cherries', 'banana'], ['Alice', 'Bob', 'Carol', 'David'], ['dogs', 'cats', 'moose', 'goose']]
title = 'Items'
print_table(tableData, title) |
x: int
x = int(input("Digite o valor de X: "))
for i in range(1, x + 1):
if i % 2 != 0:
print(i)
| x: int
x = int(input('Digite o valor de X: '))
for i in range(1, x + 1):
if i % 2 != 0:
print(i) |
coordinates_E0E1E1 = ((127, 107),
(127, 138), (127, 139), (128, 107), (128, 110), (128, 118), (128, 119), (128, 127), (128, 132), (128, 133), (128, 137), (128, 140), (129, 108), (129, 112), (129, 113), (129, 114), (129, 115), (129, 116), (129, 119), (129, 127), (129, 129), (129, 130), (129, 131), (129, 138), (129, 139), (129, 141), (130, 108), (130, 110), (130, 114), (130, 115), (130, 119), (130, 126), (130, 132), (130, 133), (130, 137), (130, 138), (130, 139), (131, 108), (131, 112), (131, 114), (131, 115), (131, 116), (131, 117), (131, 119), (131, 126), (131, 127), (131, 128), (131, 129), (131, 130), (131, 131), (131, 132), (131, 133), (131, 134), (131, 136), (131, 137), (131, 138), (131, 139), (131, 141), (132, 112), (132, 114), (132, 118), (132, 119), (132, 121), (132, 122), (132, 123), (132, 124), (132, 126), (132, 127), (132, 128), (132, 129), (132, 130), (132, 131), (132, 132),
(132, 133), (132, 134), (132, 135), (132, 136), (132, 137), (132, 138), (132, 140), (133, 111), (133, 113), (133, 114), (133, 115), (133, 116), (133, 117), (133, 119), (133, 126), (133, 127), (133, 128), (133, 129), (133, 130), (133, 131), (133, 132), (133, 133), (133, 134), (133, 135), (133, 136), (133, 137), (133, 139), (134, 109), (134, 114), (134, 118), (134, 119), (134, 120), (134, 121), (134, 122), (134, 123), (134, 124), (134, 125), (134, 126), (134, 127), (134, 128), (134, 129), (134, 134), (134, 138), (134, 139), (135, 108), (135, 110), (135, 111), (135, 114), (135, 119), (135, 125), (135, 126), (135, 127), (135, 128), (135, 130), (135, 131), (135, 132), (135, 133), (135, 136), (135, 138), (136, 108), (136, 113), (136, 119), (136, 121), (136, 122), (136, 123), (136, 124), (136, 129), (136, 134), (136, 138), (137, 113), (137, 119), (137, 125),
(137, 128), (137, 134), (137, 138), (137, 139), (138, 118), (138, 119), (138, 139), (139, 118), (139, 139), (140, 117), (140, 118), (140, 139), (141, 117), (141, 119), (141, 139), (142, 118), (142, 120), (142, 139), (143, 120), (144, 121), (145, 121), (145, 138), (146, 122), (147, 121), (147, 122), (148, 122), (149, 120), (151, 130), (151, 132), (152, 130), (152, 132), (153, 131), (153, 132), )
coordinates_E1E1E1 = ((96, 134),
(97, 133), (97, 134), (98, 134), (104, 123), (106, 107), (106, 124), (106, 126), (106, 139), (107, 108), (107, 124), (108, 112), (108, 114), (108, 123), (108, 125), (108, 131), (109, 112), (109, 116), (109, 121), (109, 124), (109, 126), (109, 130), (110, 111), (110, 117), (110, 120), (110, 123), (110, 125), (110, 126), (110, 128), (110, 132), (111, 111), (111, 115), (111, 118), (111, 119), (111, 121), (111, 122), (111, 123), (111, 124), (111, 126), (111, 129), (111, 130), (111, 131), (112, 109), (112, 111), (112, 116), (112, 119), (112, 125), (112, 127), (112, 130), (112, 134), (113, 106), (113, 108), (113, 110), (113, 118), (113, 126), (113, 127), (113, 130), (113, 132), (114, 105), (114, 110), (114, 130), (114, 137), (114, 138), (115, 104), (115, 131), (116, 130), )
coordinates_FEDAB9 = ((128, 95),
(128, 97), (129, 98), (129, 99), (129, 100), (129, 101), (129, 102), (129, 103), (129, 105), (130, 95), (130, 97), (130, 106), (131, 95), (131, 97), (131, 98), (131, 99), (131, 100), (131, 101), (131, 102), (131, 103), (131, 104), (131, 106), (132, 95), (132, 97), (132, 98), (132, 99), (132, 100), (132, 101), (132, 102), (132, 103), (132, 104), (132, 106), (132, 110), (133, 95), (133, 97), (133, 98), (133, 99), (133, 100), (133, 101), (133, 102), (133, 103), (133, 104), (133, 105), (133, 106), (133, 107), (134, 96), (134, 101), (134, 102), (134, 103), (134, 104), (134, 106), (135, 97), (135, 99), (135, 100), (135, 101), (135, 102), (135, 103), (135, 105), (135, 116), (135, 117), (136, 101), (136, 102), (136, 103), (136, 104), (136, 106), (136, 117), (137, 101), (137, 103), (137, 104), (137, 106), (137, 109), (137, 111), (137, 116),
(137, 132), (138, 101), (138, 103), (138, 104), (138, 105), (138, 106), (138, 108), (138, 112), (138, 115), (138, 116), (138, 121), (138, 123), (138, 129), (138, 132), (139, 100), (139, 102), (139, 103), (139, 104), (139, 105), (139, 106), (139, 109), (139, 110), (139, 111), (139, 113), (139, 115), (139, 125), (139, 126), (139, 127), (139, 128), (139, 133), (140, 99), (140, 101), (140, 102), (140, 103), (140, 104), (140, 105), (140, 106), (140, 107), (140, 108), (140, 109), (140, 110), (140, 111), (140, 112), (140, 115), (140, 121), (140, 123), (140, 130), (140, 132), (141, 99), (141, 101), (141, 102), (141, 103), (141, 104), (141, 105), (141, 106), (141, 107), (141, 108), (141, 109), (141, 110), (141, 111), (141, 112), (141, 113), (141, 115), (141, 121), (141, 123), (141, 124), (141, 128), (142, 100), (142, 102), (142, 103), (142, 104), (142, 105),
(142, 106), (142, 107), (142, 108), (142, 115), (142, 122), (142, 125), (142, 126), (143, 101), (143, 104), (143, 105), (143, 106), (143, 110), (143, 111), (143, 112), (143, 113), (143, 123), (143, 124), (144, 102), (144, 108), (144, 114), (144, 115), (144, 116), (144, 118), (145, 105), (145, 106), (145, 119), )
coordinates_D970D6 = ((121, 120),
(122, 107), (122, 109), (122, 119), (122, 121), (123, 106), (123, 110), (123, 118), (123, 121), (124, 105), (124, 111), (124, 121), (125, 100), (125, 102), (125, 103), (125, 107), (125, 108), (125, 112), (125, 117), (125, 119), (125, 122), (126, 96), (126, 109), (126, 110), (126, 113), (126, 117), (126, 120), (126, 122), (127, 99), (127, 101), (127, 102), (127, 105), (127, 112), (127, 114), (127, 116), (127, 121), (127, 122), (128, 121), (128, 122), (129, 121), (129, 122), (130, 121), (130, 122), )
coordinates_01CED1 = ((145, 110),
(145, 112), (145, 124), (145, 125), (146, 108), (146, 113), (146, 114), (146, 115), (146, 116), (146, 117), (146, 124), (146, 125), (147, 106), (147, 110), (147, 111), (147, 112), (147, 119), (147, 124), (147, 125), (148, 105), (148, 109), (148, 110), (148, 111), (148, 112), (148, 113), (148, 114), (148, 115), (148, 116), (148, 118), (148, 124), (148, 125), (149, 105), (149, 110), (149, 111), (149, 112), (149, 113), (149, 114), (149, 115), (149, 116), (149, 117), (149, 118), (149, 124), (149, 125), (150, 105), (150, 109), (150, 111), (150, 112), (150, 113), (150, 114), (150, 115), (150, 116), (150, 117), (150, 118), (150, 122), (150, 123), (150, 124), (150, 125), (151, 109), (151, 111), (151, 112), (151, 113), (151, 114), (151, 115), (151, 116), (151, 117), (151, 118), (151, 119), (151, 120), (151, 121), (151, 125), (152, 110), (152, 114), (152, 115),
(152, 116), (152, 117), (152, 118), (152, 122), (152, 123), (152, 125), (153, 111), (153, 114), (153, 115), (153, 116), (153, 117), (153, 118), (153, 119), (153, 120), (153, 121), (153, 122), (153, 124), (154, 115), (154, 116), (154, 117), (154, 118), (154, 119), (154, 120), (154, 121), (154, 123), (155, 115), (155, 116), (155, 117), (155, 118), (155, 119), (155, 120), (155, 121), (155, 123), (156, 115), (156, 117), (156, 118), (156, 119), (156, 120), (156, 121), (156, 122), (156, 123), (156, 124), (157, 116), (157, 119), (157, 120), (157, 121), (157, 122), (157, 124), (158, 117), (158, 121), (158, 122), (158, 124), (159, 119), (159, 120), (159, 124), (160, 121), (160, 123), )
coordinates_AED8E6 = ((142, 130),
(143, 128), (143, 129), (144, 127), (144, 129), (145, 127), (146, 127), (147, 127), (148, 128), (148, 129), (149, 128), (149, 130), (149, 131), (149, 132), (149, 134), (150, 128), (150, 133), (150, 135), (151, 127), (151, 134), (152, 127), (152, 128), (152, 134), (152, 136), (153, 127), (153, 129), (153, 134), (153, 136), (154, 130), (154, 134), (154, 137), (155, 127), (155, 129), (155, 131), (155, 134), (155, 136), (156, 133), (156, 134), (156, 136), (157, 131), (157, 134), (157, 137), (158, 132), (158, 135), (159, 132), (159, 134), )
coordinates_AF3060 = ((122, 132),
(122, 134), (122, 137), (123, 131), (123, 135), (123, 139), (123, 140), (123, 141), (123, 143), (123, 147), (123, 150), (124, 131), (124, 134), (124, 136), (124, 145), (124, 146), (124, 151), (125, 131), (125, 135), (125, 142), (125, 143), (125, 149), (126, 131), (126, 134), (126, 137), (126, 140), (126, 143), (126, 144), (126, 147), (127, 131), (127, 135), (127, 136), (127, 146), (128, 143), (128, 145), )
coordinates_A62A2A = ((135, 145),
(136, 143), (136, 144), (137, 136), (137, 141), (138, 135), (138, 141), (138, 143), (139, 135), (139, 137), (139, 141), (139, 142), (140, 135), (140, 137), (140, 141), (141, 134), (141, 137), (141, 141), (142, 132), (142, 135), (142, 137), (142, 141), (143, 134), (143, 135), (143, 137), (143, 141), (144, 131), (144, 133), (144, 134), (144, 136), (144, 140), (144, 141), (145, 130), (145, 132), (145, 133), (145, 134), (145, 136), (145, 140), (145, 141), (146, 130), (146, 136), (146, 140), (146, 141), (147, 131), (147, 133), (147, 134), (147, 137), (147, 141), (148, 135), (148, 141), (149, 136), (149, 139), (149, 141), (150, 137), (150, 139), (150, 141), (151, 138), (151, 140), (152, 138), (152, 140), (153, 139), (153, 140), )
coordinates_ACFF2F = ((126, 152),
(127, 149), (127, 151), (127, 152), (128, 148), (128, 152), (129, 146), (129, 149), (129, 151), (130, 144), (130, 146), (130, 150), (130, 151), (131, 143), (131, 145), (132, 142), (132, 145), (133, 142), (133, 145), (134, 141), (134, 143), (135, 140), )
coordinates_FFDAB9 = ((100, 104),
(101, 103), (101, 105), (101, 106), (101, 107), (101, 109), (101, 127), (101, 128), (101, 129), (101, 131), (102, 103), (102, 110), (102, 119), (102, 120), (102, 125), (102, 132), (103, 103), (103, 105), (103, 106), (103, 107), (103, 108), (103, 109), (103, 111), (103, 115), (103, 117), (103, 118), (103, 121), (103, 128), (103, 129), (103, 130), (103, 131), (103, 133), (104, 103), (104, 105), (104, 106), (104, 107), (104, 108), (104, 109), (104, 110), (104, 111), (104, 119), (104, 121), (104, 125), (104, 127), (104, 128), (104, 129), (104, 130), (104, 131), (104, 133), (105, 103), (105, 105), (105, 106), (105, 107), (105, 108), (105, 109), (105, 110), (105, 113), (105, 116), (105, 117), (105, 118), (105, 119), (105, 121), (105, 128), (105, 129), (105, 133), (106, 101), (106, 103), (106, 104), (106, 105), (106, 106), (106, 107), (106, 108), (106, 109),
(106, 110), (106, 111), (106, 114), (106, 117), (106, 118), (106, 119), (106, 122), (106, 128), (106, 131), (106, 133), (107, 100), (107, 103), (107, 104), (107, 105), (107, 106), (107, 107), (107, 108), (107, 110), (107, 116), (107, 118), (107, 119), (107, 121), (107, 128), (107, 129), (107, 133), (107, 134), (108, 100), (108, 102), (108, 103), (108, 104), (108, 105), (108, 106), (108, 107), (108, 108), (108, 110), (108, 117), (108, 120), (108, 128), (108, 133), (108, 134), (109, 99), (109, 101), (109, 102), (109, 103), (109, 104), (109, 105), (109, 106), (109, 107), (109, 109), (109, 118), (109, 119), (109, 134), (109, 135), (110, 99), (110, 101), (110, 102), (110, 103), (110, 104), (110, 105), (110, 109), (110, 135), (111, 98), (111, 100), (111, 101), (111, 102), (111, 103), (111, 106), (111, 107), (111, 136), (111, 138), (111, 140), (112, 98),
(112, 100), (112, 101), (112, 102), (112, 104), (112, 137), (112, 141), (113, 98), (113, 100), (113, 101), (113, 103), (113, 140), (114, 98), (114, 100), (114, 102), (115, 98), (115, 102), (116, 98), (116, 100), (117, 98), )
coordinates_DA70D6 = ((113, 113),
(113, 115), (113, 121), (113, 124), (114, 112), (114, 116), (114, 119), (114, 120), (114, 125), (114, 128), (115, 106), (115, 108), (115, 113), (115, 114), (115, 115), (115, 117), (115, 118), (115, 121), (115, 122), (115, 123), (115, 124), (116, 105), (116, 110), (116, 112), (116, 113), (116, 114), (116, 115), (116, 116), (116, 121), (116, 122), (116, 123), (116, 124), (116, 125), (117, 101), (117, 103), (117, 104), (117, 107), (117, 108), (117, 111), (117, 112), (117, 116), (117, 122), (117, 123), (117, 124), (117, 125), (117, 126), (117, 128), (117, 132), (117, 133), (118, 100), (118, 106), (118, 109), (118, 114), (118, 115), (118, 118), (118, 121), (118, 124), (118, 125), (118, 126), (118, 127), (118, 130), (118, 133), (119, 100), (119, 102), (119, 104), (119, 110), (119, 112), (119, 116), (119, 122), (119, 129), (119, 133), (120, 103), (120, 110),
(120, 125), (120, 126), (120, 127), (120, 132), )
coordinates_00CED1 = ((87, 120),
(87, 121), (88, 120), (88, 122), (89, 114), (89, 119), (89, 123), (90, 111), (90, 115), (90, 119), (90, 121), (90, 123), (91, 110), (91, 113), (91, 115), (91, 119), (91, 121), (91, 122), (91, 124), (92, 109), (92, 111), (92, 112), (92, 113), (92, 115), (92, 119), (92, 121), (92, 122), (92, 124), (93, 108), (93, 111), (93, 112), (93, 113), (93, 115), (93, 119), (93, 121), (93, 122), (93, 123), (93, 125), (94, 109), (94, 110), (94, 111), (94, 112), (94, 113), (94, 114), (94, 116), (94, 119), (94, 120), (94, 121), (94, 122), (94, 123), (94, 125), (95, 111), (95, 113), (95, 114), (95, 115), (95, 117), (95, 118), (95, 119), (95, 120), (95, 121), (95, 122), (95, 123), (95, 125), (96, 111), (96, 113), (96, 114), (96, 115), (96, 116), (96, 119), (96, 120), (96, 121), (96, 122), (96, 123),
(96, 124), (96, 126), (97, 110), (97, 112), (97, 113), (97, 114), (97, 115), (97, 116), (97, 117), (97, 118), (97, 119), (97, 120), (97, 121), (97, 122), (97, 123), (97, 124), (97, 126), (98, 110), (98, 112), (98, 113), (98, 114), (98, 115), (98, 116), (98, 117), (98, 118), (98, 119), (98, 120), (98, 121), (98, 122), (98, 123), (98, 124), (98, 125), (98, 127), (99, 109), (99, 112), (99, 113), (99, 114), (99, 115), (99, 116), (99, 117), (99, 127), (100, 110), (100, 118), (100, 119), (100, 120), (100, 121), (100, 122), (100, 123), (100, 124), (100, 125), (101, 112), (101, 114), (101, 115), (101, 116), )
coordinates_A120F0 = ((122, 124),
(122, 127), (122, 128), (123, 124), (123, 126), (123, 129), (124, 124), (124, 127), (124, 129), (125, 124), (125, 126), (125, 129), (126, 124), (126, 127), (126, 129), (127, 124), (127, 129), (128, 124), (128, 125), (129, 124), (129, 125), (130, 124), )
coordinates_A52A2A = ((87, 130),
(87, 132), (87, 133), (87, 135), (88, 129), (88, 136), (89, 128), (89, 130), (89, 131), (89, 132), (89, 133), (89, 134), (89, 135), (89, 137), (90, 127), (90, 129), (90, 130), (90, 131), (90, 132), (90, 133), (90, 134), (90, 135), (90, 136), (90, 138), (91, 128), (91, 129), (91, 130), (91, 131), (91, 132), (91, 133), (91, 134), (91, 135), (91, 136), (91, 138), (92, 127), (92, 129), (92, 130), (92, 131), (92, 132), (92, 133), (92, 134), (92, 135), (92, 136), (92, 138), (93, 127), (93, 129), (93, 130), (93, 131), (93, 132), (93, 135), (93, 136), (93, 137), (93, 138), (93, 139), (94, 127), (94, 129), (94, 130), (94, 131), (94, 134), (94, 136), (94, 137), (94, 139), (95, 128), (95, 130), (95, 132), (95, 139), (96, 128), (96, 131), (96, 136), (96, 139), (97, 129), (97, 131), (98, 129),
(98, 131), (99, 129), (99, 130), )
coordinates_ADFF2F = ((98, 136),
(98, 139), (99, 132), (99, 137), (99, 139), (100, 133), (100, 134), (100, 137), (100, 139), (101, 134), (101, 136), (101, 137), (101, 138), (101, 140), (102, 135), (102, 137), (102, 138), (102, 139), (102, 141), (103, 135), (103, 137), (103, 143), (104, 135), (104, 137), (104, 138), (104, 139), (104, 140), (104, 141), (104, 143), (105, 135), (105, 137), (105, 141), (105, 143), (106, 136), (106, 137), (106, 141), (106, 144), (107, 136), (107, 140), (107, 141), (107, 142), (107, 144), (108, 137), (108, 141), (108, 142), (108, 144), (109, 138), (109, 140), (109, 143), (109, 145), (110, 141), (110, 143), (110, 144), (110, 146), (111, 142), (111, 144), (111, 145), (111, 147), (112, 143), (112, 145), (112, 148), (113, 144), (113, 146), (113, 147), (113, 149), (114, 144), (114, 150), (115, 146), (115, 148), (115, 150), )
coordinates_A020F0 = ((114, 134),
(115, 134), (116, 135), (116, 138), (117, 135), (117, 138), (118, 135), (118, 138), (119, 137), (119, 138), (120, 137), (120, 138), )
coordinates_B03060 = ((115, 140),
(116, 140), (116, 142), (116, 144), (117, 140), (117, 145), (117, 146), (117, 147), (117, 148), (117, 150), (118, 140), (118, 142), (118, 143), (118, 144), (118, 150), (119, 140), (119, 149), (120, 140), (120, 142), (120, 143), (120, 146), (120, 147), (120, 149), (121, 140), (121, 143), )
coordinates_ACD8E6 = ((85, 126),
(86, 125), (86, 126), (86, 129), (87, 125), (88, 125), (89, 125), )
| coordinates_e0_e1_e1 = ((127, 107), (127, 138), (127, 139), (128, 107), (128, 110), (128, 118), (128, 119), (128, 127), (128, 132), (128, 133), (128, 137), (128, 140), (129, 108), (129, 112), (129, 113), (129, 114), (129, 115), (129, 116), (129, 119), (129, 127), (129, 129), (129, 130), (129, 131), (129, 138), (129, 139), (129, 141), (130, 108), (130, 110), (130, 114), (130, 115), (130, 119), (130, 126), (130, 132), (130, 133), (130, 137), (130, 138), (130, 139), (131, 108), (131, 112), (131, 114), (131, 115), (131, 116), (131, 117), (131, 119), (131, 126), (131, 127), (131, 128), (131, 129), (131, 130), (131, 131), (131, 132), (131, 133), (131, 134), (131, 136), (131, 137), (131, 138), (131, 139), (131, 141), (132, 112), (132, 114), (132, 118), (132, 119), (132, 121), (132, 122), (132, 123), (132, 124), (132, 126), (132, 127), (132, 128), (132, 129), (132, 130), (132, 131), (132, 132), (132, 133), (132, 134), (132, 135), (132, 136), (132, 137), (132, 138), (132, 140), (133, 111), (133, 113), (133, 114), (133, 115), (133, 116), (133, 117), (133, 119), (133, 126), (133, 127), (133, 128), (133, 129), (133, 130), (133, 131), (133, 132), (133, 133), (133, 134), (133, 135), (133, 136), (133, 137), (133, 139), (134, 109), (134, 114), (134, 118), (134, 119), (134, 120), (134, 121), (134, 122), (134, 123), (134, 124), (134, 125), (134, 126), (134, 127), (134, 128), (134, 129), (134, 134), (134, 138), (134, 139), (135, 108), (135, 110), (135, 111), (135, 114), (135, 119), (135, 125), (135, 126), (135, 127), (135, 128), (135, 130), (135, 131), (135, 132), (135, 133), (135, 136), (135, 138), (136, 108), (136, 113), (136, 119), (136, 121), (136, 122), (136, 123), (136, 124), (136, 129), (136, 134), (136, 138), (137, 113), (137, 119), (137, 125), (137, 128), (137, 134), (137, 138), (137, 139), (138, 118), (138, 119), (138, 139), (139, 118), (139, 139), (140, 117), (140, 118), (140, 139), (141, 117), (141, 119), (141, 139), (142, 118), (142, 120), (142, 139), (143, 120), (144, 121), (145, 121), (145, 138), (146, 122), (147, 121), (147, 122), (148, 122), (149, 120), (151, 130), (151, 132), (152, 130), (152, 132), (153, 131), (153, 132))
coordinates_e1_e1_e1 = ((96, 134), (97, 133), (97, 134), (98, 134), (104, 123), (106, 107), (106, 124), (106, 126), (106, 139), (107, 108), (107, 124), (108, 112), (108, 114), (108, 123), (108, 125), (108, 131), (109, 112), (109, 116), (109, 121), (109, 124), (109, 126), (109, 130), (110, 111), (110, 117), (110, 120), (110, 123), (110, 125), (110, 126), (110, 128), (110, 132), (111, 111), (111, 115), (111, 118), (111, 119), (111, 121), (111, 122), (111, 123), (111, 124), (111, 126), (111, 129), (111, 130), (111, 131), (112, 109), (112, 111), (112, 116), (112, 119), (112, 125), (112, 127), (112, 130), (112, 134), (113, 106), (113, 108), (113, 110), (113, 118), (113, 126), (113, 127), (113, 130), (113, 132), (114, 105), (114, 110), (114, 130), (114, 137), (114, 138), (115, 104), (115, 131), (116, 130))
coordinates_fedab9 = ((128, 95), (128, 97), (129, 98), (129, 99), (129, 100), (129, 101), (129, 102), (129, 103), (129, 105), (130, 95), (130, 97), (130, 106), (131, 95), (131, 97), (131, 98), (131, 99), (131, 100), (131, 101), (131, 102), (131, 103), (131, 104), (131, 106), (132, 95), (132, 97), (132, 98), (132, 99), (132, 100), (132, 101), (132, 102), (132, 103), (132, 104), (132, 106), (132, 110), (133, 95), (133, 97), (133, 98), (133, 99), (133, 100), (133, 101), (133, 102), (133, 103), (133, 104), (133, 105), (133, 106), (133, 107), (134, 96), (134, 101), (134, 102), (134, 103), (134, 104), (134, 106), (135, 97), (135, 99), (135, 100), (135, 101), (135, 102), (135, 103), (135, 105), (135, 116), (135, 117), (136, 101), (136, 102), (136, 103), (136, 104), (136, 106), (136, 117), (137, 101), (137, 103), (137, 104), (137, 106), (137, 109), (137, 111), (137, 116), (137, 132), (138, 101), (138, 103), (138, 104), (138, 105), (138, 106), (138, 108), (138, 112), (138, 115), (138, 116), (138, 121), (138, 123), (138, 129), (138, 132), (139, 100), (139, 102), (139, 103), (139, 104), (139, 105), (139, 106), (139, 109), (139, 110), (139, 111), (139, 113), (139, 115), (139, 125), (139, 126), (139, 127), (139, 128), (139, 133), (140, 99), (140, 101), (140, 102), (140, 103), (140, 104), (140, 105), (140, 106), (140, 107), (140, 108), (140, 109), (140, 110), (140, 111), (140, 112), (140, 115), (140, 121), (140, 123), (140, 130), (140, 132), (141, 99), (141, 101), (141, 102), (141, 103), (141, 104), (141, 105), (141, 106), (141, 107), (141, 108), (141, 109), (141, 110), (141, 111), (141, 112), (141, 113), (141, 115), (141, 121), (141, 123), (141, 124), (141, 128), (142, 100), (142, 102), (142, 103), (142, 104), (142, 105), (142, 106), (142, 107), (142, 108), (142, 115), (142, 122), (142, 125), (142, 126), (143, 101), (143, 104), (143, 105), (143, 106), (143, 110), (143, 111), (143, 112), (143, 113), (143, 123), (143, 124), (144, 102), (144, 108), (144, 114), (144, 115), (144, 116), (144, 118), (145, 105), (145, 106), (145, 119))
coordinates_d970_d6 = ((121, 120), (122, 107), (122, 109), (122, 119), (122, 121), (123, 106), (123, 110), (123, 118), (123, 121), (124, 105), (124, 111), (124, 121), (125, 100), (125, 102), (125, 103), (125, 107), (125, 108), (125, 112), (125, 117), (125, 119), (125, 122), (126, 96), (126, 109), (126, 110), (126, 113), (126, 117), (126, 120), (126, 122), (127, 99), (127, 101), (127, 102), (127, 105), (127, 112), (127, 114), (127, 116), (127, 121), (127, 122), (128, 121), (128, 122), (129, 121), (129, 122), (130, 121), (130, 122))
coordinates_01_ced1 = ((145, 110), (145, 112), (145, 124), (145, 125), (146, 108), (146, 113), (146, 114), (146, 115), (146, 116), (146, 117), (146, 124), (146, 125), (147, 106), (147, 110), (147, 111), (147, 112), (147, 119), (147, 124), (147, 125), (148, 105), (148, 109), (148, 110), (148, 111), (148, 112), (148, 113), (148, 114), (148, 115), (148, 116), (148, 118), (148, 124), (148, 125), (149, 105), (149, 110), (149, 111), (149, 112), (149, 113), (149, 114), (149, 115), (149, 116), (149, 117), (149, 118), (149, 124), (149, 125), (150, 105), (150, 109), (150, 111), (150, 112), (150, 113), (150, 114), (150, 115), (150, 116), (150, 117), (150, 118), (150, 122), (150, 123), (150, 124), (150, 125), (151, 109), (151, 111), (151, 112), (151, 113), (151, 114), (151, 115), (151, 116), (151, 117), (151, 118), (151, 119), (151, 120), (151, 121), (151, 125), (152, 110), (152, 114), (152, 115), (152, 116), (152, 117), (152, 118), (152, 122), (152, 123), (152, 125), (153, 111), (153, 114), (153, 115), (153, 116), (153, 117), (153, 118), (153, 119), (153, 120), (153, 121), (153, 122), (153, 124), (154, 115), (154, 116), (154, 117), (154, 118), (154, 119), (154, 120), (154, 121), (154, 123), (155, 115), (155, 116), (155, 117), (155, 118), (155, 119), (155, 120), (155, 121), (155, 123), (156, 115), (156, 117), (156, 118), (156, 119), (156, 120), (156, 121), (156, 122), (156, 123), (156, 124), (157, 116), (157, 119), (157, 120), (157, 121), (157, 122), (157, 124), (158, 117), (158, 121), (158, 122), (158, 124), (159, 119), (159, 120), (159, 124), (160, 121), (160, 123))
coordinates_aed8_e6 = ((142, 130), (143, 128), (143, 129), (144, 127), (144, 129), (145, 127), (146, 127), (147, 127), (148, 128), (148, 129), (149, 128), (149, 130), (149, 131), (149, 132), (149, 134), (150, 128), (150, 133), (150, 135), (151, 127), (151, 134), (152, 127), (152, 128), (152, 134), (152, 136), (153, 127), (153, 129), (153, 134), (153, 136), (154, 130), (154, 134), (154, 137), (155, 127), (155, 129), (155, 131), (155, 134), (155, 136), (156, 133), (156, 134), (156, 136), (157, 131), (157, 134), (157, 137), (158, 132), (158, 135), (159, 132), (159, 134))
coordinates_af3060 = ((122, 132), (122, 134), (122, 137), (123, 131), (123, 135), (123, 139), (123, 140), (123, 141), (123, 143), (123, 147), (123, 150), (124, 131), (124, 134), (124, 136), (124, 145), (124, 146), (124, 151), (125, 131), (125, 135), (125, 142), (125, 143), (125, 149), (126, 131), (126, 134), (126, 137), (126, 140), (126, 143), (126, 144), (126, 147), (127, 131), (127, 135), (127, 136), (127, 146), (128, 143), (128, 145))
coordinates_a62_a2_a = ((135, 145), (136, 143), (136, 144), (137, 136), (137, 141), (138, 135), (138, 141), (138, 143), (139, 135), (139, 137), (139, 141), (139, 142), (140, 135), (140, 137), (140, 141), (141, 134), (141, 137), (141, 141), (142, 132), (142, 135), (142, 137), (142, 141), (143, 134), (143, 135), (143, 137), (143, 141), (144, 131), (144, 133), (144, 134), (144, 136), (144, 140), (144, 141), (145, 130), (145, 132), (145, 133), (145, 134), (145, 136), (145, 140), (145, 141), (146, 130), (146, 136), (146, 140), (146, 141), (147, 131), (147, 133), (147, 134), (147, 137), (147, 141), (148, 135), (148, 141), (149, 136), (149, 139), (149, 141), (150, 137), (150, 139), (150, 141), (151, 138), (151, 140), (152, 138), (152, 140), (153, 139), (153, 140))
coordinates_acff2_f = ((126, 152), (127, 149), (127, 151), (127, 152), (128, 148), (128, 152), (129, 146), (129, 149), (129, 151), (130, 144), (130, 146), (130, 150), (130, 151), (131, 143), (131, 145), (132, 142), (132, 145), (133, 142), (133, 145), (134, 141), (134, 143), (135, 140))
coordinates_ffdab9 = ((100, 104), (101, 103), (101, 105), (101, 106), (101, 107), (101, 109), (101, 127), (101, 128), (101, 129), (101, 131), (102, 103), (102, 110), (102, 119), (102, 120), (102, 125), (102, 132), (103, 103), (103, 105), (103, 106), (103, 107), (103, 108), (103, 109), (103, 111), (103, 115), (103, 117), (103, 118), (103, 121), (103, 128), (103, 129), (103, 130), (103, 131), (103, 133), (104, 103), (104, 105), (104, 106), (104, 107), (104, 108), (104, 109), (104, 110), (104, 111), (104, 119), (104, 121), (104, 125), (104, 127), (104, 128), (104, 129), (104, 130), (104, 131), (104, 133), (105, 103), (105, 105), (105, 106), (105, 107), (105, 108), (105, 109), (105, 110), (105, 113), (105, 116), (105, 117), (105, 118), (105, 119), (105, 121), (105, 128), (105, 129), (105, 133), (106, 101), (106, 103), (106, 104), (106, 105), (106, 106), (106, 107), (106, 108), (106, 109), (106, 110), (106, 111), (106, 114), (106, 117), (106, 118), (106, 119), (106, 122), (106, 128), (106, 131), (106, 133), (107, 100), (107, 103), (107, 104), (107, 105), (107, 106), (107, 107), (107, 108), (107, 110), (107, 116), (107, 118), (107, 119), (107, 121), (107, 128), (107, 129), (107, 133), (107, 134), (108, 100), (108, 102), (108, 103), (108, 104), (108, 105), (108, 106), (108, 107), (108, 108), (108, 110), (108, 117), (108, 120), (108, 128), (108, 133), (108, 134), (109, 99), (109, 101), (109, 102), (109, 103), (109, 104), (109, 105), (109, 106), (109, 107), (109, 109), (109, 118), (109, 119), (109, 134), (109, 135), (110, 99), (110, 101), (110, 102), (110, 103), (110, 104), (110, 105), (110, 109), (110, 135), (111, 98), (111, 100), (111, 101), (111, 102), (111, 103), (111, 106), (111, 107), (111, 136), (111, 138), (111, 140), (112, 98), (112, 100), (112, 101), (112, 102), (112, 104), (112, 137), (112, 141), (113, 98), (113, 100), (113, 101), (113, 103), (113, 140), (114, 98), (114, 100), (114, 102), (115, 98), (115, 102), (116, 98), (116, 100), (117, 98))
coordinates_da70_d6 = ((113, 113), (113, 115), (113, 121), (113, 124), (114, 112), (114, 116), (114, 119), (114, 120), (114, 125), (114, 128), (115, 106), (115, 108), (115, 113), (115, 114), (115, 115), (115, 117), (115, 118), (115, 121), (115, 122), (115, 123), (115, 124), (116, 105), (116, 110), (116, 112), (116, 113), (116, 114), (116, 115), (116, 116), (116, 121), (116, 122), (116, 123), (116, 124), (116, 125), (117, 101), (117, 103), (117, 104), (117, 107), (117, 108), (117, 111), (117, 112), (117, 116), (117, 122), (117, 123), (117, 124), (117, 125), (117, 126), (117, 128), (117, 132), (117, 133), (118, 100), (118, 106), (118, 109), (118, 114), (118, 115), (118, 118), (118, 121), (118, 124), (118, 125), (118, 126), (118, 127), (118, 130), (118, 133), (119, 100), (119, 102), (119, 104), (119, 110), (119, 112), (119, 116), (119, 122), (119, 129), (119, 133), (120, 103), (120, 110), (120, 125), (120, 126), (120, 127), (120, 132))
coordinates_00_ced1 = ((87, 120), (87, 121), (88, 120), (88, 122), (89, 114), (89, 119), (89, 123), (90, 111), (90, 115), (90, 119), (90, 121), (90, 123), (91, 110), (91, 113), (91, 115), (91, 119), (91, 121), (91, 122), (91, 124), (92, 109), (92, 111), (92, 112), (92, 113), (92, 115), (92, 119), (92, 121), (92, 122), (92, 124), (93, 108), (93, 111), (93, 112), (93, 113), (93, 115), (93, 119), (93, 121), (93, 122), (93, 123), (93, 125), (94, 109), (94, 110), (94, 111), (94, 112), (94, 113), (94, 114), (94, 116), (94, 119), (94, 120), (94, 121), (94, 122), (94, 123), (94, 125), (95, 111), (95, 113), (95, 114), (95, 115), (95, 117), (95, 118), (95, 119), (95, 120), (95, 121), (95, 122), (95, 123), (95, 125), (96, 111), (96, 113), (96, 114), (96, 115), (96, 116), (96, 119), (96, 120), (96, 121), (96, 122), (96, 123), (96, 124), (96, 126), (97, 110), (97, 112), (97, 113), (97, 114), (97, 115), (97, 116), (97, 117), (97, 118), (97, 119), (97, 120), (97, 121), (97, 122), (97, 123), (97, 124), (97, 126), (98, 110), (98, 112), (98, 113), (98, 114), (98, 115), (98, 116), (98, 117), (98, 118), (98, 119), (98, 120), (98, 121), (98, 122), (98, 123), (98, 124), (98, 125), (98, 127), (99, 109), (99, 112), (99, 113), (99, 114), (99, 115), (99, 116), (99, 117), (99, 127), (100, 110), (100, 118), (100, 119), (100, 120), (100, 121), (100, 122), (100, 123), (100, 124), (100, 125), (101, 112), (101, 114), (101, 115), (101, 116))
coordinates_a120_f0 = ((122, 124), (122, 127), (122, 128), (123, 124), (123, 126), (123, 129), (124, 124), (124, 127), (124, 129), (125, 124), (125, 126), (125, 129), (126, 124), (126, 127), (126, 129), (127, 124), (127, 129), (128, 124), (128, 125), (129, 124), (129, 125), (130, 124))
coordinates_a52_a2_a = ((87, 130), (87, 132), (87, 133), (87, 135), (88, 129), (88, 136), (89, 128), (89, 130), (89, 131), (89, 132), (89, 133), (89, 134), (89, 135), (89, 137), (90, 127), (90, 129), (90, 130), (90, 131), (90, 132), (90, 133), (90, 134), (90, 135), (90, 136), (90, 138), (91, 128), (91, 129), (91, 130), (91, 131), (91, 132), (91, 133), (91, 134), (91, 135), (91, 136), (91, 138), (92, 127), (92, 129), (92, 130), (92, 131), (92, 132), (92, 133), (92, 134), (92, 135), (92, 136), (92, 138), (93, 127), (93, 129), (93, 130), (93, 131), (93, 132), (93, 135), (93, 136), (93, 137), (93, 138), (93, 139), (94, 127), (94, 129), (94, 130), (94, 131), (94, 134), (94, 136), (94, 137), (94, 139), (95, 128), (95, 130), (95, 132), (95, 139), (96, 128), (96, 131), (96, 136), (96, 139), (97, 129), (97, 131), (98, 129), (98, 131), (99, 129), (99, 130))
coordinates_adff2_f = ((98, 136), (98, 139), (99, 132), (99, 137), (99, 139), (100, 133), (100, 134), (100, 137), (100, 139), (101, 134), (101, 136), (101, 137), (101, 138), (101, 140), (102, 135), (102, 137), (102, 138), (102, 139), (102, 141), (103, 135), (103, 137), (103, 143), (104, 135), (104, 137), (104, 138), (104, 139), (104, 140), (104, 141), (104, 143), (105, 135), (105, 137), (105, 141), (105, 143), (106, 136), (106, 137), (106, 141), (106, 144), (107, 136), (107, 140), (107, 141), (107, 142), (107, 144), (108, 137), (108, 141), (108, 142), (108, 144), (109, 138), (109, 140), (109, 143), (109, 145), (110, 141), (110, 143), (110, 144), (110, 146), (111, 142), (111, 144), (111, 145), (111, 147), (112, 143), (112, 145), (112, 148), (113, 144), (113, 146), (113, 147), (113, 149), (114, 144), (114, 150), (115, 146), (115, 148), (115, 150))
coordinates_a020_f0 = ((114, 134), (115, 134), (116, 135), (116, 138), (117, 135), (117, 138), (118, 135), (118, 138), (119, 137), (119, 138), (120, 137), (120, 138))
coordinates_b03060 = ((115, 140), (116, 140), (116, 142), (116, 144), (117, 140), (117, 145), (117, 146), (117, 147), (117, 148), (117, 150), (118, 140), (118, 142), (118, 143), (118, 144), (118, 150), (119, 140), (119, 149), (120, 140), (120, 142), (120, 143), (120, 146), (120, 147), (120, 149), (121, 140), (121, 143))
coordinates_acd8_e6 = ((85, 126), (86, 125), (86, 126), (86, 129), (87, 125), (88, 125), (89, 125)) |
async def test_on_open(monkeypatch, async_junos_driver):
_input_counter = 0
async def _get_prompt(cls):
return "scrapli>"
async def _send_input(cls, channel_input, **kwargs):
nonlocal _input_counter
if _input_counter == 0:
assert channel_input == "set cli screen-length 0"
elif _input_counter == 1:
assert channel_input == "set cli screen-width 511"
else:
assert channel_input == "set cli complete-on-space off"
_input_counter += 1
return b"", b""
monkeypatch.setattr("scrapli.channel.async_channel.AsyncChannel.get_prompt", _get_prompt)
monkeypatch.setattr("scrapli.channel.async_channel.AsyncChannel.send_input", _send_input)
async_junos_driver._current_priv_level = async_junos_driver.privilege_levels["exec"]
await async_junos_driver.on_open(async_junos_driver)
async def test_on_close(monkeypatch, async_junos_driver):
async def _get_prompt(cls):
return "scrapli>"
def _write(cls, channel_input, **kwargs):
assert channel_input == "exit"
def _send_return(cls):
pass
monkeypatch.setattr("scrapli.channel.async_channel.AsyncChannel.get_prompt", _get_prompt)
monkeypatch.setattr("scrapli.channel.async_channel.AsyncChannel.write", _write)
monkeypatch.setattr("scrapli.channel.async_channel.AsyncChannel.send_return", _send_return)
async_junos_driver._current_priv_level = async_junos_driver.privilege_levels["exec"]
await async_junos_driver.on_close(async_junos_driver)
| async def test_on_open(monkeypatch, async_junos_driver):
_input_counter = 0
async def _get_prompt(cls):
return 'scrapli>'
async def _send_input(cls, channel_input, **kwargs):
nonlocal _input_counter
if _input_counter == 0:
assert channel_input == 'set cli screen-length 0'
elif _input_counter == 1:
assert channel_input == 'set cli screen-width 511'
else:
assert channel_input == 'set cli complete-on-space off'
_input_counter += 1
return (b'', b'')
monkeypatch.setattr('scrapli.channel.async_channel.AsyncChannel.get_prompt', _get_prompt)
monkeypatch.setattr('scrapli.channel.async_channel.AsyncChannel.send_input', _send_input)
async_junos_driver._current_priv_level = async_junos_driver.privilege_levels['exec']
await async_junos_driver.on_open(async_junos_driver)
async def test_on_close(monkeypatch, async_junos_driver):
async def _get_prompt(cls):
return 'scrapli>'
def _write(cls, channel_input, **kwargs):
assert channel_input == 'exit'
def _send_return(cls):
pass
monkeypatch.setattr('scrapli.channel.async_channel.AsyncChannel.get_prompt', _get_prompt)
monkeypatch.setattr('scrapli.channel.async_channel.AsyncChannel.write', _write)
monkeypatch.setattr('scrapli.channel.async_channel.AsyncChannel.send_return', _send_return)
async_junos_driver._current_priv_level = async_junos_driver.privilege_levels['exec']
await async_junos_driver.on_close(async_junos_driver) |
# -----------------------------------------------------------
# Information of the atomic_mass from:
# https://en.wikipedia.org/wiki/Periodic_table
# -----------------------------------------------------------
class Element:
def __init__(self, number=None, mass=None, symbol=None):
self.number = int(number) if number != None else None
self.mass = float(mass) if mass != None else None
self.symbol = str(symbol) if symbol != None else None
element = {
"H": Element(1, 1.008, "H"),
"He": Element(2, 4.002602, "He"),
"Li": Element(3, 6.94, "Li"),
"Be": Element(4, 9.012183, "Be"),
"B": Element(5, 10.81, "B"),
"C": Element(6, 12.011, "C"),
"N": Element(7, 14.007, "N"),
"O": Element(8, 15.999, "O"),
"F": Element(9, 18.99840316, "F"),
"Ne": Element(10, 20.1797, "Ne"),
"Na": Element(11, 22.98976928, "Na"),
"Mg": Element(12, 24.305, "Mg"),
"Al": Element(13, 26.9815384, "Al"),
"Si": Element(14, 28.085, "Si"),
"P": Element(15, 30.973761998, "P"),
"S": Element(16, 32.06, "S"),
"Cl": Element(17, 35.45, "Cl"),
"Ar": Element(18, 39.95, "Ar"),
"K": Element(19, 39.0983, "K"),
"Ca": Element(20, 40.078, "Ca"),
"Sc": Element(21, 44.955908, "Sc"),
"Ti": Element(22, 47.867, "Ti"),
"V": Element(23, 50.9415, "V"),
"Cr": Element(24, 51.9961, "Cr"),
"Mn": Element(25, 54.938043, "Mn"),
"Fe": Element(26, 55.845, "Fe"),
"Co": Element(27, 58.933154, "Co"),
"Ni": Element(28, 58.6934, "Ni"),
"Cu": Element(29, 63.546, "Cu"),
"Zn": Element(30, 65.38, "Zn"),
"Ga": Element(31, 69.723, "Ga"),
"Ge": Element(32, 72.630, "Ge"),
"As": Element(33, 74.921595, "As"),
"Se": Element(34, 78.971, "Se"),
"Br": Element(35, 79.904, "Br"),
"Kr": Element(36, 83.798, "Kr"),
"Rb": Element(37, 85.4678, "Rb"),
"Sr": Element(38, 87.62, "Sr"),
"Y": Element(39, 88.90584, "Y"),
"Zr": Element(40, 91.224, "Zr"),
"Nb": Element(41, 92.90637, "Nb"),
"Mo": Element(42, 95.95, "Mo"),
"Tc": Element(43, 97.0, "Tc"), # mass number
"Ru": Element(44, 101.07, "Ru"),
"Rh": Element(45, 102.90549, "Rh"),
"Pd": Element(46, 106.42, "Pd"),
"Ag": Element(47, 107.8682, "Ag"),
"Cd": Element(48, 112.414, "Cd"),
"In": Element(49, 114.818, "In"),
"Sn": Element(50, 118.710, "Sn"),
"Sb": Element(51, 121.760, "Sb"),
"Te": Element(52, 127.60, "Te"),
"I": Element(53, 126.90447, "I"),
"Xe": Element(54, 131.293, "Xe"),
"Cs": Element(55, 132.90545196, "Cs"),
"Ba": Element(56, 137.327, "Ba"),
"La": Element(57, 138.90547, "La"),
"Ce": Element(58, 140.116, "Ce"),
"Pr": Element(59, 140.90766, "Pr"),
"Nd": Element(60, 144.242, "Nd"),
"Pm": Element(61, 145.0, "Pm"), # mass number
"Sm": Element(62, 150.36, "Sm"),
"Eu": Element(63, 151.964, "Eu"),
"Gd": Element(64, 157.25, "Gd"),
"Tb": Element(65, 158.925354, "Tb"),
"Dy": Element(66, 162.500, "Dy"),
"Ho": Element(67, 164.930328, "Ho"),
"Er": Element(68, 167.259, "Er"),
"Tm": Element(69, 168.934218, "Tm"),
"Yb": Element(70, 173.045, "Yb"),
"Lu": Element(71, 174.9668, "Lu"),
"Hf": Element(72, 178.49, "Hf"),
"Ta": Element(73, 180.94788, "Ta"),
"W": Element(74, 183.84, "W"),
"Re": Element(75, 186.207, "Re"),
"Os": Element(76, 190.23, "Os"),
"Ir": Element(77, 192.217, "Os"),
"Pt": Element(78, 195.084, "Pt"),
"Au": Element(79, 196.966570, "Au"),
"Hg": Element(80, 200.592, "Hg"),
"Tl": Element(81, 204.38, "Tl"),
"Pb": Element(82, 207.2, "Pb"),
"Bi": Element(83, 208.98040, "Bi"),
"Po": Element(84, 209, "Po"), # mass number
"At": Element(85, 210, "At"), # mass number
"Rn": Element(86, 222, "Rn"), # mass number
"Fr": Element(87, 223, "Fr"), # mass number
"Ra": Element(88, 226, "Ra"), # mass number
"Ac": Element(89, 227, "Ac"), # mass number
"Th": Element(90, 232.0377, "Th"),
"Pa": Element(91, 231.03588, "Pa"),
"U": Element(92, 238.02891, "U"),
"Np": Element(93, 237, "Np"),
"Pu": Element(94, 244, "Pu"), # mass number
"Am": Element(95, 243, "Am"), # mass number
"Cm": Element(96, 247, "Cm"), # mass number
"Bk": Element(97, 247, "Bk"), # mass number
"Cf": Element(98, 251, "Cf"), # mass number
"Es": Element(99, 252, "Es"), # mass number
"Fm": Element(100, 257, "Fm"), # mass number
"Md": Element(101, 258, "Md"), # mass number
"No": Element(102, 259, "No"), # mass number
"Lr": Element(103, 266, "Lr"), # mass number
"Rf": Element(104, 267, "Rf"), # mass number
"Db": Element(105, 268, "Db"), # mass number
"Sg": Element(106, 269, "Sg"), # mass number
"Bh": Element(107, 270, "Bh"), # mass number, unconfirmed: 278
"Hs": Element(108, 269, "Hs"), # mass number
"Mt": Element(109, 278, "Mt"), # mass number, unconfirmed: 282
"Ds": Element(110, 281, "Ds"), # mass number
"Rg": Element(111, 282, "Rg"), # mass number, unconfirmed: 286
"Cn": Element(112, 285, "Cn"), # mass number
"Nh": Element(113, 286, "Nh"), # mass number
"Fl": Element(114, 289, "Fl"), # mass number, unconfirmed: 290
"Mc": Element(115, 290, "Mc"), # mass number
"Lv": Element(116, 293, "Lv"), # mass number
"Ts": Element(117, 294, "Ts"), # mass number
"Og": Element(118, 294, "Og"), # mass number, unconfirmed: 295
}
| class Element:
def __init__(self, number=None, mass=None, symbol=None):
self.number = int(number) if number != None else None
self.mass = float(mass) if mass != None else None
self.symbol = str(symbol) if symbol != None else None
element = {'H': element(1, 1.008, 'H'), 'He': element(2, 4.002602, 'He'), 'Li': element(3, 6.94, 'Li'), 'Be': element(4, 9.012183, 'Be'), 'B': element(5, 10.81, 'B'), 'C': element(6, 12.011, 'C'), 'N': element(7, 14.007, 'N'), 'O': element(8, 15.999, 'O'), 'F': element(9, 18.99840316, 'F'), 'Ne': element(10, 20.1797, 'Ne'), 'Na': element(11, 22.98976928, 'Na'), 'Mg': element(12, 24.305, 'Mg'), 'Al': element(13, 26.9815384, 'Al'), 'Si': element(14, 28.085, 'Si'), 'P': element(15, 30.973761998, 'P'), 'S': element(16, 32.06, 'S'), 'Cl': element(17, 35.45, 'Cl'), 'Ar': element(18, 39.95, 'Ar'), 'K': element(19, 39.0983, 'K'), 'Ca': element(20, 40.078, 'Ca'), 'Sc': element(21, 44.955908, 'Sc'), 'Ti': element(22, 47.867, 'Ti'), 'V': element(23, 50.9415, 'V'), 'Cr': element(24, 51.9961, 'Cr'), 'Mn': element(25, 54.938043, 'Mn'), 'Fe': element(26, 55.845, 'Fe'), 'Co': element(27, 58.933154, 'Co'), 'Ni': element(28, 58.6934, 'Ni'), 'Cu': element(29, 63.546, 'Cu'), 'Zn': element(30, 65.38, 'Zn'), 'Ga': element(31, 69.723, 'Ga'), 'Ge': element(32, 72.63, 'Ge'), 'As': element(33, 74.921595, 'As'), 'Se': element(34, 78.971, 'Se'), 'Br': element(35, 79.904, 'Br'), 'Kr': element(36, 83.798, 'Kr'), 'Rb': element(37, 85.4678, 'Rb'), 'Sr': element(38, 87.62, 'Sr'), 'Y': element(39, 88.90584, 'Y'), 'Zr': element(40, 91.224, 'Zr'), 'Nb': element(41, 92.90637, 'Nb'), 'Mo': element(42, 95.95, 'Mo'), 'Tc': element(43, 97.0, 'Tc'), 'Ru': element(44, 101.07, 'Ru'), 'Rh': element(45, 102.90549, 'Rh'), 'Pd': element(46, 106.42, 'Pd'), 'Ag': element(47, 107.8682, 'Ag'), 'Cd': element(48, 112.414, 'Cd'), 'In': element(49, 114.818, 'In'), 'Sn': element(50, 118.71, 'Sn'), 'Sb': element(51, 121.76, 'Sb'), 'Te': element(52, 127.6, 'Te'), 'I': element(53, 126.90447, 'I'), 'Xe': element(54, 131.293, 'Xe'), 'Cs': element(55, 132.90545196, 'Cs'), 'Ba': element(56, 137.327, 'Ba'), 'La': element(57, 138.90547, 'La'), 'Ce': element(58, 140.116, 'Ce'), 'Pr': element(59, 140.90766, 'Pr'), 'Nd': element(60, 144.242, 'Nd'), 'Pm': element(61, 145.0, 'Pm'), 'Sm': element(62, 150.36, 'Sm'), 'Eu': element(63, 151.964, 'Eu'), 'Gd': element(64, 157.25, 'Gd'), 'Tb': element(65, 158.925354, 'Tb'), 'Dy': element(66, 162.5, 'Dy'), 'Ho': element(67, 164.930328, 'Ho'), 'Er': element(68, 167.259, 'Er'), 'Tm': element(69, 168.934218, 'Tm'), 'Yb': element(70, 173.045, 'Yb'), 'Lu': element(71, 174.9668, 'Lu'), 'Hf': element(72, 178.49, 'Hf'), 'Ta': element(73, 180.94788, 'Ta'), 'W': element(74, 183.84, 'W'), 'Re': element(75, 186.207, 'Re'), 'Os': element(76, 190.23, 'Os'), 'Ir': element(77, 192.217, 'Os'), 'Pt': element(78, 195.084, 'Pt'), 'Au': element(79, 196.96657, 'Au'), 'Hg': element(80, 200.592, 'Hg'), 'Tl': element(81, 204.38, 'Tl'), 'Pb': element(82, 207.2, 'Pb'), 'Bi': element(83, 208.9804, 'Bi'), 'Po': element(84, 209, 'Po'), 'At': element(85, 210, 'At'), 'Rn': element(86, 222, 'Rn'), 'Fr': element(87, 223, 'Fr'), 'Ra': element(88, 226, 'Ra'), 'Ac': element(89, 227, 'Ac'), 'Th': element(90, 232.0377, 'Th'), 'Pa': element(91, 231.03588, 'Pa'), 'U': element(92, 238.02891, 'U'), 'Np': element(93, 237, 'Np'), 'Pu': element(94, 244, 'Pu'), 'Am': element(95, 243, 'Am'), 'Cm': element(96, 247, 'Cm'), 'Bk': element(97, 247, 'Bk'), 'Cf': element(98, 251, 'Cf'), 'Es': element(99, 252, 'Es'), 'Fm': element(100, 257, 'Fm'), 'Md': element(101, 258, 'Md'), 'No': element(102, 259, 'No'), 'Lr': element(103, 266, 'Lr'), 'Rf': element(104, 267, 'Rf'), 'Db': element(105, 268, 'Db'), 'Sg': element(106, 269, 'Sg'), 'Bh': element(107, 270, 'Bh'), 'Hs': element(108, 269, 'Hs'), 'Mt': element(109, 278, 'Mt'), 'Ds': element(110, 281, 'Ds'), 'Rg': element(111, 282, 'Rg'), 'Cn': element(112, 285, 'Cn'), 'Nh': element(113, 286, 'Nh'), 'Fl': element(114, 289, 'Fl'), 'Mc': element(115, 290, 'Mc'), 'Lv': element(116, 293, 'Lv'), 'Ts': element(117, 294, 'Ts'), 'Og': element(118, 294, 'Og')} |
# Python program for Memoized version of nth Fibonacci number
# Function to calculate nth Fibonacci number
def fib(n, lookup):
# Base case
if n == 0 or n == 1 :
lookup[n] = n
# If the value is not calculated previously then calculate it
if lookup[n] is None:
lookup[n] = fib(n-1 , lookup) + fib(n-2 , lookup)
# return the value corresponding to that value of n
return lookup[n]
# end of function
if __name__=="__main__":
n = int(input())
# Declaration of lookup table
# Handles till n = 100
lookup = [None]*(101)
print("Fibonacci Number is ", fib(n, lookup))
# This code is contributed by Nikhil Kumar Singh(nickzuck_007) | def fib(n, lookup):
if n == 0 or n == 1:
lookup[n] = n
if lookup[n] is None:
lookup[n] = fib(n - 1, lookup) + fib(n - 2, lookup)
return lookup[n]
if __name__ == '__main__':
n = int(input())
lookup = [None] * 101
print('Fibonacci Number is ', fib(n, lookup)) |
# Create a list of odd numbers between 1 and n (including 1)
n = int(input("n: "))
odds = []
for i in range(1, n + 1):
if (i % 2) == True:
odds.append(i)
print(odds) | n = int(input('n: '))
odds = []
for i in range(1, n + 1):
if i % 2 == True:
odds.append(i)
print(odds) |
# Copyright 2020 Uber Technologies, Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
SPARK_CONF_MAX_INT = '2147483647'
SPARK_CONF_MAX_INT_MINUS_ONE = '2147483646'
# required for elastic fault-tolerance and auto-scale
# Horovod has retry counters and limits, no need to limit Spark's retries
SPARK_CONF_ALWAYS_RESTART_FAILED_TASK = ('spark.task.maxFailures', SPARK_CONF_MAX_INT)
# executor and node retry counters (Spark blacklist)
# see https://spark.apache.org/docs/latest/configuration.html#scheduling
SPARK_CONF_BLACKLIST_DISABLED = ('spark.blacklist.enabled', 'false')
SPARK_CONF_BLACKLIST_ENABLED = ('spark.blacklist.enabled', 'true')
# executors where any task fails due to exceptions can potentially be reused for any other task,
# including the task itself, unless SPARK_CONF_DONT_REUSE_EXECUTOR_FOR_SAME_TASK is set
# executors lost e.g. due to node failure can't be reused in any way
# requires SPARK_CONF_BLACKLIST_ENABLED
SPARK_CONF_REUSE_FAILED_EXECUTOR = ('spark.blacklist.stage.maxFailedTasksPerExecutor', SPARK_CONF_MAX_INT)
SPARK_CONF_DONT_REUSE_FAILED_EXECUTOR = ('spark.blacklist.stage.maxFailedTasksPerExecutor', '1')
# nodes with failed executors may have other executors that can still be used
# requires SPARK_CONF_BLACKLIST_ENABLED
# SPARK_CONF_REUSE_FAILING_NODE requires SPARK_CONF_REUSE_FAILED_EXECUTOR
SPARK_CONF_REUSE_FAILING_NODE = ('spark.blacklist.stage.maxFailedExecutorsPerNode', SPARK_CONF_MAX_INT_MINUS_ONE)
SPARK_CONF_DONT_REUSE_FAILING_NODE = ('spark.blacklist.stage.maxFailedExecutorsPerNode', '1')
# executors where tasks fail due to exceptions can potentially be reused for the same task
# executors lost e.g. due to node failure can't be reused in any way
# requires SPARK_CONF_BLACKLIST_ENABLED
SPARK_CONF_REUSE_EXECUTOR_ALWAYS_FOR_SAME_TASK = ('spark.blacklist.task.maxTaskAttemptsPerExecutor', SPARK_CONF_MAX_INT)
SPARK_CONF_REUSE_EXECUTOR_ONCE_FOR_SAME_TASK = ('spark.blacklist.task.maxTaskAttemptsPerExecutor', '2')
SPARK_CONF_DONT_REUSE_EXECUTOR_FOR_SAME_TASK = ('spark.blacklist.task.maxTaskAttemptsPerExecutor', '1')
# nodes (with multiple executors) where tasks fail due to exceptions can potentially be reused for the same task
# nodes lost e.g. due to node failure can't be reused in any way
# requires SPARK_CONF_BLACKLIST_ENABLED
# ? SPARK_CONF_REUSE_NODE_ALWAYS_FOR_SAME_TASK requires SPARK_CONF_REUSE_EXECUTOR_ALWAYS_FOR_SAME_TASK
SPARK_CONF_REUSE_NODE_ALWAYS_FOR_SAME_TASK = ('spark.blacklist.task.maxTaskAttemptsPerNode', SPARK_CONF_MAX_INT_MINUS_ONE)
SPARK_CONF_REUSE_NODE_ONCE_FOR_SAME_TASK = ('spark.blacklist.task.maxTaskAttemptsPerNode', '2')
SPARK_CONF_DONT_REUSE_NODE_FOR_SAME_TASK = ('spark.blacklist.task.maxTaskAttemptsPerNode', '1')
# executors where any task fails due to exceptions can potentially be reused for any other task,
# including the task itself, unless SPARK_CONF_DONT_REUSE_EXECUTOR_FOR_SAME_TASK is set
# executors lost e.g. due to node failure can't be reused in any way
# NOTE: in dynamic allocation, only executors blacklisted for the entire app
# can get reclaimed by the cluster manager
# requires SPARK_CONF_BLACKLIST_ENABLED
SPARK_CONF_REUSE_FAILED_EXECUTOR_IN_APP = ('spark.blacklist.application.maxFailedTasksPerExecutor', SPARK_CONF_MAX_INT)
SPARK_CONF_DONT_REUSE_FAILED_EXECUTOR_IN_APP = ('spark.blacklist.application.maxFailedTasksPerExecutor', '1')
# nodes with failed executors may have other executors that can still be used across the app
# NOTE: in dynamic allocation, only executors blacklisted for the entire app
# can get reclaimed by the cluster manager
# requires SPARK_CONF_BLACKLIST_ENABLED
SPARK_CONF_REUSE_FAILING_NODE_IN_APP = ('spark.blacklist.application.maxFailedExecutorsPerNode', SPARK_CONF_MAX_INT)
SPARK_CONF_DONT_REUSE_FAILING_NODE_IN_APP = ('spark.blacklist.application.maxFailedExecutorsPerNode', '1')
# default values: https://spark.apache.org/docs/latest/configuration.html
SPARK_CONF_DEFAULT_VALUES = {
'spark.task.maxFailures': '4',
'spark.blacklist.enabled': 'false',
'spark.blacklist.stage.maxFailedTasksPerExecutor': '2',
'spark.blacklist.stage.maxFailedExecutorsPerNode': '2',
'spark.blacklist.task.maxTaskAttemptsPerExecutor': '1',
'spark.blacklist.task.maxTaskAttemptsPerNode': '2',
'spark.blacklist.application.maxFailedTasksPerExecutor': '2',
'spark.blacklist.application.maxFailedExecutorsPerNode': '2'
}
| spark_conf_max_int = '2147483647'
spark_conf_max_int_minus_one = '2147483646'
spark_conf_always_restart_failed_task = ('spark.task.maxFailures', SPARK_CONF_MAX_INT)
spark_conf_blacklist_disabled = ('spark.blacklist.enabled', 'false')
spark_conf_blacklist_enabled = ('spark.blacklist.enabled', 'true')
spark_conf_reuse_failed_executor = ('spark.blacklist.stage.maxFailedTasksPerExecutor', SPARK_CONF_MAX_INT)
spark_conf_dont_reuse_failed_executor = ('spark.blacklist.stage.maxFailedTasksPerExecutor', '1')
spark_conf_reuse_failing_node = ('spark.blacklist.stage.maxFailedExecutorsPerNode', SPARK_CONF_MAX_INT_MINUS_ONE)
spark_conf_dont_reuse_failing_node = ('spark.blacklist.stage.maxFailedExecutorsPerNode', '1')
spark_conf_reuse_executor_always_for_same_task = ('spark.blacklist.task.maxTaskAttemptsPerExecutor', SPARK_CONF_MAX_INT)
spark_conf_reuse_executor_once_for_same_task = ('spark.blacklist.task.maxTaskAttemptsPerExecutor', '2')
spark_conf_dont_reuse_executor_for_same_task = ('spark.blacklist.task.maxTaskAttemptsPerExecutor', '1')
spark_conf_reuse_node_always_for_same_task = ('spark.blacklist.task.maxTaskAttemptsPerNode', SPARK_CONF_MAX_INT_MINUS_ONE)
spark_conf_reuse_node_once_for_same_task = ('spark.blacklist.task.maxTaskAttemptsPerNode', '2')
spark_conf_dont_reuse_node_for_same_task = ('spark.blacklist.task.maxTaskAttemptsPerNode', '1')
spark_conf_reuse_failed_executor_in_app = ('spark.blacklist.application.maxFailedTasksPerExecutor', SPARK_CONF_MAX_INT)
spark_conf_dont_reuse_failed_executor_in_app = ('spark.blacklist.application.maxFailedTasksPerExecutor', '1')
spark_conf_reuse_failing_node_in_app = ('spark.blacklist.application.maxFailedExecutorsPerNode', SPARK_CONF_MAX_INT)
spark_conf_dont_reuse_failing_node_in_app = ('spark.blacklist.application.maxFailedExecutorsPerNode', '1')
spark_conf_default_values = {'spark.task.maxFailures': '4', 'spark.blacklist.enabled': 'false', 'spark.blacklist.stage.maxFailedTasksPerExecutor': '2', 'spark.blacklist.stage.maxFailedExecutorsPerNode': '2', 'spark.blacklist.task.maxTaskAttemptsPerExecutor': '1', 'spark.blacklist.task.maxTaskAttemptsPerNode': '2', 'spark.blacklist.application.maxFailedTasksPerExecutor': '2', 'spark.blacklist.application.maxFailedExecutorsPerNode': '2'} |
#
# PySNMP MIB module CPQHSV110V3-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CPQHSV110V3-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 18:11:47 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "SingleValueConstraint")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
iso, Unsigned32, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, IpAddress, MibIdentifier, ObjectIdentity, Bits, ModuleIdentity, Counter32, NotificationType, Integer32, Counter64, TimeTicks, enterprises = mibBuilder.importSymbols("SNMPv2-SMI", "iso", "Unsigned32", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "IpAddress", "MibIdentifier", "ObjectIdentity", "Bits", "ModuleIdentity", "Counter32", "NotificationType", "Integer32", "Counter64", "TimeTicks", "enterprises")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
compaq = MibIdentifier((1, 3, 6, 1, 4, 1, 232))
cpqElementManager = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136))
cpqHSV = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1))
cpqHSVAgent = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 1))
cpqHSVServer = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 2))
hsvObject = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3))
maHSVMibRev = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 4))
scell = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1))
agent = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 2))
host = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3))
nsc = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4))
shelf = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8))
agManufacturer = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agManufacturer.setStatus('mandatory')
agMajVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agMajVersion.setStatus('mandatory')
agMinVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agMinVersion.setStatus('mandatory')
agHostName = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agHostName.setStatus('mandatory')
agEnterprise = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 5), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agEnterprise.setStatus('mandatory')
agDescription = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agDescription.setStatus('mandatory')
agStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7), )
if mibBuilder.loadTexts: agStatusTable.setStatus('mandatory')
agentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1), ).setIndexNames((0, "CPQHSV110V3-MIB", "agentEntryIndex"))
if mibBuilder.loadTexts: agentEntry.setStatus('mandatory')
agentEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEntryIndex.setStatus('mandatory')
agentStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("other", 1), ("ok", 2), ("degraded", 3), ("failed", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentStatus.setStatus('mandatory')
agentEventCode = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEventCode.setStatus('mandatory')
agentEventLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEventLevel.setStatus('mandatory')
agentEventTimeDate = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEventTimeDate.setStatus('mandatory')
agentEventDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEventDescription.setStatus('mandatory')
srvCPU = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvCPU.setStatus('mandatory')
srvComputerType = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvComputerType.setStatus('mandatory')
srvModel = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvModel.setStatus('mandatory')
srvSubModel = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvSubModel.setStatus('mandatory')
srvBiosVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvBiosVersion.setStatus('mandatory')
srvOS = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvOS.setStatus('mandatory')
srvOSMajVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvOSMajVersion.setStatus('mandatory')
srvOSMinVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvOSMinVersion.setStatus('mandatory')
maHSVMibRevMajor = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: maHSVMibRevMajor.setStatus('mandatory')
maHSVMibRevMinor = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 4, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: maHSVMibRevMinor.setStatus('mandatory')
scellTotal = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellTotal.setStatus('mandatory')
scellStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2), )
if mibBuilder.loadTexts: scellStatusTable.setStatus('mandatory')
scellEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1), ).setIndexNames((0, "CPQHSV110V3-MIB", "scellEntryIndex"))
if mibBuilder.loadTexts: scellEntry.setStatus('mandatory')
scellEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEntryIndex.setStatus('mandatory')
scellName = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellName.setStatus('mandatory')
scellUUID = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellUUID.setStatus('mandatory')
scellStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("informational", 1), ("minor", 2), ("major", 3), ("failed", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellStatus.setStatus('mandatory')
scellEventDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEventDescription.setStatus('mandatory')
scellEventTimeDate = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEventTimeDate.setStatus('mandatory')
scellEventCode = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEventCode.setStatus('mandatory')
scellSWComponent = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellSWComponent.setStatus('mandatory')
scellECode = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellECode.setStatus('mandatory')
scellCAC = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellCAC.setStatus('mandatory')
scellEIP = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEIP.setStatus('mandatory')
scellNameDateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 12), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellNameDateTime.setStatus('mandatory')
hostTotal = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostTotal.setStatus('mandatory')
hostStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2), )
if mibBuilder.loadTexts: hostStatusTable.setStatus('mandatory')
hostEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1), ).setIndexNames((0, "CPQHSV110V3-MIB", "hostEntryIndex"))
if mibBuilder.loadTexts: hostEntry.setStatus('mandatory')
hostEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostEntryIndex.setStatus('mandatory')
hostName = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostName.setStatus('mandatory')
hostUUID = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostUUID.setStatus('mandatory')
hostStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("informational", 0), ("minor", 1), ("major", 2), ("critical", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostStatus.setStatus('mandatory')
nscTotal = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscTotal.setStatus('mandatory')
nscStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2), )
if mibBuilder.loadTexts: nscStatusTable.setStatus('mandatory')
nscEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1), ).setIndexNames((0, "CPQHSV110V3-MIB", "nscEntryIndex"))
if mibBuilder.loadTexts: nscEntry.setStatus('mandatory')
nscEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscEntryIndex.setStatus('mandatory')
nscName = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscName.setStatus('mandatory')
nscUUID = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscUUID.setStatus('mandatory')
nscStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("informational", 0), ("minor", 1), ("major", 2), ("critical", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscStatus.setStatus('mandatory')
shelfTotal = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfTotal.setStatus('mandatory')
shelfStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2), )
if mibBuilder.loadTexts: shelfStatusTable.setStatus('mandatory')
shelfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1), ).setIndexNames((0, "CPQHSV110V3-MIB", "shelfEntryIndex"))
if mibBuilder.loadTexts: shelfEntry.setStatus('mandatory')
shelfEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfEntryIndex.setStatus('mandatory')
shelfStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("other", 1), ("ok", 2), ("degraded", 3), ("failed", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfStatus.setStatus('mandatory')
shelfId = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfId.setStatus('mandatory')
shelfElementType = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfElementType.setStatus('mandatory')
shelfElementNum = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfElementNum.setStatus('mandatory')
shelfErrorCode = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfErrorCode.setStatus('mandatory')
emuEventTrapInformative = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "shelfId"), ("CPQHSV110V3-MIB", "shelfElementType"), ("CPQHSV110V3-MIB", "shelfElementNum"), ("CPQHSV110V3-MIB", "shelfErrorCode"))
emuEventTrapNoncritical = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "shelfId"), ("CPQHSV110V3-MIB", "shelfElementType"), ("CPQHSV110V3-MIB", "shelfElementNum"), ("CPQHSV110V3-MIB", "shelfErrorCode"))
emuEventTrapCritical = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "shelfId"), ("CPQHSV110V3-MIB", "shelfElementType"), ("CPQHSV110V3-MIB", "shelfElementNum"), ("CPQHSV110V3-MIB", "shelfErrorCode"))
emuEventTrapUnrecoverable = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "shelfId"), ("CPQHSV110V3-MIB", "shelfElementType"), ("CPQHSV110V3-MIB", "shelfElementNum"), ("CPQHSV110V3-MIB", "shelfErrorCode"))
sCellEventTrap_1_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600256)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_1_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600257)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600768)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600769)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600770)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600771)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600772)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600773)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600774)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600775)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600776)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601024)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601025)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601026)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601027)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601028)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601029)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601030)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601031)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601032)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601033)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601034)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601035)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601036)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601037)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601038)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601039)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_10 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601040)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_11 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601041)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601536)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601537)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601538)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601539)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601540)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601541)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601543)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601544)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601545)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601546)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601547)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601548)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601549)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601550)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601551)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_10 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601552)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_12 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601554)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_13 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601555)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_14 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601556)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_15 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601557)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_16 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601558)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_18 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601560)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_19 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601561)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_1a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601562)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_1b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601563)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_1c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601564)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_1d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601565)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_1e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601566)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_1f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601567)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_20 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601568)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_21 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601569)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_23 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601571)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_24 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601572)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_25 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601573)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_26 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601574)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_27 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601575)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_28 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601576)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_29 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601577)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_2a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601578)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_2b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601579)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_2c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601580)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_2d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601581)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_2e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601582)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_30 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601584)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_31 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601585)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_32 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601586)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_33 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601587)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_34 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601588)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_35 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601589)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_36 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601590)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_37 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601591)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_38 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601592)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_39 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601593)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_3a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601594)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_3b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601595)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_3c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601596)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_3d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601597)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_3e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601598)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601792)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601793)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601794)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601795)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601796)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601797)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601798)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601799)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601800)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602305)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602306)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602307)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602308)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602309)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602310)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602311)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602312)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602313)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602314)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602316)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602317)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602318)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602319)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_11 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602321)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_12 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602322)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_13 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602323)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_14 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602324)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_15 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602325)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_16 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602326)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_17 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602327)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_18 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602328)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_19 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602329)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_1a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602330)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_1b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602331)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_1c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602332)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_1d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602333)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_1e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602334)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_1f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602335)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_20 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602336)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_21 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602337)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_22 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602338)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_23 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602339)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_24 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602340)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_25 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602341)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_26 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602342)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_27 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602343)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_28 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602344)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_29 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602345)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_2a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602346)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_2b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602347)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_2c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602348)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_2d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602349)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_2e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602350)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_2f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602351)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_30 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602352)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_31 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602353)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_32 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602354)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_33 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602355)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_34 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602356)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_35 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602357)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_36 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602358)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_37 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602359)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_38 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602360)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_39 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602361)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_3a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602362)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_3b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602363)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_3c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602364)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_3d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602365)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_3e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602366)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_3f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602367)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_40 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602368)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_41 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602369)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_43 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602371)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_44 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602372)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_45 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602373)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_46 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602374)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_47 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602375)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_48 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602376)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_49 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602377)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_65 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602405)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_66 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602406)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_67 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602407)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_68 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602408)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_69 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602409)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_6a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602410)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_6b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602411)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_6c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602412)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_6d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602413)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_6e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602414)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_70 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602416)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_71 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602417)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_72 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602418)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_73 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602419)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_74 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602420)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_75 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602421)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_76 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602422)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_77 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602423)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_78 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602424)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_79 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602425)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_7a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602426)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_c8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602504)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_c9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602505)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_ca = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602506)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_cb = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602507)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_cc = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602508)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_cd = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602509)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_ce = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602510)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_cf = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602511)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602512)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602513)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602514)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602515)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602516)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602517)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602518)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602519)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_b_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602816)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603072)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603073)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603074)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603075)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603076)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603077)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603078)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603079)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603080)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603081)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603082)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603084)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603087)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_10 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603088)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_11 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603089)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_12 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603090)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_15 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603093)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603328)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603329)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603330)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603331)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603332)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_33 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603379)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_34 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603380)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_35 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603381)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_47 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603399)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_4b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603403)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_4c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603404)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_5b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603419)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_5f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603423)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_6f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603439)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_71 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603441)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_72 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603442)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_7e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603454)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_7f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603455)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_82 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603458)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_83 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603459)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_85 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603461)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_8d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603469)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_a1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603489)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_b5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603509)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_d8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603544)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_d9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603545)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_dd = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603549)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_de = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603550)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_ec = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603564)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_f0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603568)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_42_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616896)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_42_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616897)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_42_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616899)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_42_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616900)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_42_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616901)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_83_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633536)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_83_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633537)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_83_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633538)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_83_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633539)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_83_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633540)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_83_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633541)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_83_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633542)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
mngmtAgentTrap_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_11 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_12 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_19 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_22 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_23 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_24 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_28 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_29 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_30 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_31 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_32 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_33 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_34 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_35 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_36 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_37 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_38 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_39 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000039)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_40 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_41 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000041)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_42 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000042)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_43 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000043)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_44 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000044)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_45 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000045)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_46 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000046)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_47 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000047)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_48 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000048)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_49 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000049)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_50 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000050)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_51 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000051)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_52 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000052)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_53 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000053)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_54 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000054)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_55 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000055)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_56 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000056)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_57 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000057)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_58 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000058)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_59 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000059)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_60 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000060)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_61 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000061)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_62 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000062)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_63 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000063)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_64 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000064)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_65 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000065)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_66 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000066)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_67 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000067)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_68 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000068)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_69 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000069)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_70 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000070)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_71 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000071)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_72 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000072)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_73 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000073)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_74 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000074)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_75 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000075)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_76 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000076)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_77 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000077)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_78 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000078)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_79 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000079)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_80 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000080)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_81 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000081)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_82 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000082)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_83 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000083)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_84 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000084)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_85 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000085)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_86 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000086)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_87 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000087)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_88 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000088)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_89 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000089)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_90 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000090)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_91 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000091)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_92 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000092)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_93 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000093)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_94 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000094)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_95 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000095)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_96 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000096)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_97 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000097)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_98 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000098)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_99 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000099)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_100 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000100)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_101 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000101)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_102 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000102)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_103 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000103)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_104 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000104)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_105 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000105)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_106 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000106)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_107 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000107)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_108 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000108)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_109 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000109)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_110 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000110)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_111 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000111)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_112 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000112)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_113 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000113)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_114 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000114)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_115 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000115)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_116 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000116)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_117 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000117)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_118 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000118)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_119 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000119)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_120 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000120)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_121 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000121)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_122 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000122)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_123 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000123)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_124 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000124)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_125 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000125)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_126 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000126)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_127 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000127)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_128 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000128)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_129 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000129)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_130 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000130)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_131 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000131)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_132 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000132)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_133 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000133)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1000 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001000)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002041)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002042)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002047)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002048)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002049)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002050)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002051)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2052 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002052)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2057 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002057)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2058 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002058)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002059)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2060 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002060)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2061 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002061)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2062 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002062)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2063 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002063)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2064 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002064)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2065 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002065)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2066 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002066)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2067 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002067)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2068 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002068)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2069 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002069)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2070 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002070)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2071 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002071)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2072 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002072)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2073 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002073)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2074 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002074)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2075 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002075)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2076 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002076)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2077 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002077)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2078 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002078)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2079 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002079)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2080 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002080)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2081 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002081)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2082 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002082)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2083 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002083)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2084 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002084)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2085 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002085)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2086 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002086)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2087 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002087)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2088 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002088)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2089 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002089)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2090 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002090)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2091 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002091)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2092 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002092)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2093 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002093)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2095 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002095)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2096 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002096)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2097 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002097)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2098 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002098)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2099 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002099)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2100 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002100)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2102 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002102)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2103 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002103)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003039)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3044 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003044)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3045 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003045)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3046 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003046)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003047)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003048)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003049)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003050)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003051)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3053 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003053)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3054 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003054)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3055 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003055)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3056 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003056)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3057 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003057)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3058 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003058)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003059)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3060 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003060)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3061 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003061)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3062 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003062)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3063 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003063)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3064 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003064)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3065 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003065)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3066 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003066)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3067 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003067)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3068 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003068)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3069 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003069)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3070 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003070)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3071 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003071)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3072 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003072)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3075 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003075)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3076 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003076)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3077 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003077)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3078 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003078)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3079 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003079)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3080 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003080)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3081 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003081)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3083 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003083)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3084 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003084)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3086 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003086)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3090 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003090)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3091 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003091)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3092 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003092)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3094 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003094)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3095 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003095)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4000 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004000)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004041)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004042)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4043 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004043)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004047)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004048)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004049)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004050)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004051)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4052 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004052)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4053 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004053)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4054 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004054)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4058 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004058)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004059)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008039)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008041)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008042)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8043 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008043)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8044 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008044)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8045 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008045)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8046 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008046)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008047)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008048)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008049)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008050)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008051)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8052 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008052)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8053 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008053)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8054 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008054)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8055 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008055)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8056 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008056)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8057 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008057)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8058 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008058)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008059)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8060 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008060)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8061 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008061)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8062 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008062)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8063 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008063)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8064 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008064)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8065 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008065)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8066 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008066)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8067 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008067)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8068 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008068)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8069 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008069)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8070 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008070)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8071 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008071)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8073 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008073)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8074 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008074)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8075 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008075)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8076 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008076)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8077 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008077)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8078 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008078)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8079 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008079)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8080 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008080)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8081 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008081)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8082 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008082)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8083 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008083)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8084 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008084)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8085 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008085)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8086 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008086)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8087 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008087)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8088 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008088)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8089 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008089)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8090 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008090)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010039)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010041)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010042)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10043 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010043)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10044 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010044)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_11001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136011001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_11002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136011002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_11003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136011003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_11004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136011004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_12001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_12002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_12003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_12004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_12005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_12008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016039)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018039)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018041)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018042)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18045 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018045)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018047)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018048)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018049)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018050)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018051)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18052 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018052)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018059)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18060 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018060)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18063 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018063)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18065 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018065)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18066 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018066)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18067 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018067)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18068 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018068)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18070 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018070)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18071 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018071)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18073 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018073)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18074 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018074)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18075 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018075)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18076 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018076)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18080 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018080)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18081 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018081)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_22001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136022001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_22002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136022002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_23002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136023002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_23003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136023003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_24001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136024001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_24002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136024002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_24003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136024003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_24004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136024004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027039)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027041)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027042)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27043 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027043)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27044 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027044)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27045 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027045)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27046 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027046)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027047)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027048)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027049)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mibBuilder.exportSymbols("CPQHSV110V3-MIB", mngmtAgentTrap_103=mngmtAgentTrap_103, mngmtAgentTrap_3021=mngmtAgentTrap_3021, mngmtAgentTrap_8001=mngmtAgentTrap_8001, sCellEventTrap_9_6=sCellEventTrap_9_6, scellEventDescription=scellEventDescription, mngmtAgentTrap_3072=mngmtAgentTrap_3072, sCellEventTrap_6_2c=sCellEventTrap_6_2c, mngmtAgentTrap_2072=mngmtAgentTrap_2072, mngmtAgentTrap_8078=mngmtAgentTrap_8078, mngmtAgentTrap_16001=mngmtAgentTrap_16001, mngmtAgentTrap_2008=mngmtAgentTrap_2008, mngmtAgentTrap_83=mngmtAgentTrap_83, sCellEventTrap_6_2d=sCellEventTrap_6_2d, sCellEventTrap_9_72=sCellEventTrap_9_72, mngmtAgentTrap_8044=mngmtAgentTrap_8044, mngmtAgentTrap_18038=mngmtAgentTrap_18038, sCellEventTrap_d_ec=sCellEventTrap_d_ec, mngmtAgentTrap_27020=mngmtAgentTrap_27020, mngmtAgentTrap_4000=mngmtAgentTrap_4000, mngmtAgentTrap_26009=mngmtAgentTrap_26009, mngmtAgentTrap_27042=mngmtAgentTrap_27042, mngmtAgentTrap_4050=mngmtAgentTrap_4050, mngmtAgentTrap_27046=mngmtAgentTrap_27046, mngmtAgentTrap_9027=mngmtAgentTrap_9027, mngmtAgentTrap_27048=mngmtAgentTrap_27048, mngmtAgentTrap_18025=mngmtAgentTrap_18025, mngmtAgentTrap_8013=mngmtAgentTrap_8013, mngmtAgentTrap_9035=mngmtAgentTrap_9035, mngmtAgentTrap_2007=mngmtAgentTrap_2007, mngmtAgentTrap_11003=mngmtAgentTrap_11003, mngmtAgentTrap_16037=mngmtAgentTrap_16037, mngmtAgentTrap_88=mngmtAgentTrap_88, mngmtAgentTrap_20019=mngmtAgentTrap_20019, mngmtAgentTrap_25005=mngmtAgentTrap_25005, sCellEventTrap_6_1e=sCellEventTrap_6_1e, sCellEventTrap_9_3f=sCellEventTrap_9_3f, maHSVMibRevMinor=maHSVMibRevMinor, mngmtAgentTrap_68=mngmtAgentTrap_68, sCellEventTrap_9_c=sCellEventTrap_9_c, mngmtAgentTrap_15=mngmtAgentTrap_15, sCellEventTrap_6_f=sCellEventTrap_6_f, mngmtAgentTrap_2079=mngmtAgentTrap_2079, mngmtAgentTrap_8030=mngmtAgentTrap_8030, mngmtAgentTrap_14017=mngmtAgentTrap_14017, mngmtAgentTrap_18048=mngmtAgentTrap_18048, sCellEventTrap_6_1=sCellEventTrap_6_1, mngmtAgentTrap_99=mngmtAgentTrap_99, mngmtAgentTrap_8054=mngmtAgentTrap_8054, mngmtAgentTrap_21009=mngmtAgentTrap_21009, mngmtAgentTrap_6016=mngmtAgentTrap_6016, mngmtAgentTrap_21014=mngmtAgentTrap_21014, mngmtAgentTrap_9025=mngmtAgentTrap_9025, mngmtAgentTrap_94=mngmtAgentTrap_94, mngmtAgentTrap_15007=mngmtAgentTrap_15007, sCellEventTrap_9_34=sCellEventTrap_9_34, mngmtAgentTrap_6023=mngmtAgentTrap_6023, sCellEventTrap_9_30=sCellEventTrap_9_30, mngmtAgentTrap_57=mngmtAgentTrap_57, sCellEventTrap_9_41=sCellEventTrap_9_41, mngmtAgentTrap_14005=mngmtAgentTrap_14005, sCellEventTrap_83_4=sCellEventTrap_83_4, mngmtAgentTrap_13017=mngmtAgentTrap_13017, sCellEventTrap_9_19=sCellEventTrap_9_19, mngmtAgentTrap_15002=mngmtAgentTrap_15002, nscName=nscName, mngmtAgentTrap_18005=mngmtAgentTrap_18005, mngmtAgentTrap_2033=mngmtAgentTrap_2033, agManufacturer=agManufacturer, mngmtAgentTrap_9013=mngmtAgentTrap_9013, mngmtAgentTrap_2010=mngmtAgentTrap_2010, sCellEventTrap_6_1a=sCellEventTrap_6_1a, mngmtAgentTrap_26007=mngmtAgentTrap_26007, mngmtAgentTrap_10031=mngmtAgentTrap_10031, mngmtAgentTrap_130=mngmtAgentTrap_130, mngmtAgentTrap_3044=mngmtAgentTrap_3044, mngmtAgentTrap_8064=mngmtAgentTrap_8064, mngmtAgentTrap_20011=mngmtAgentTrap_20011, sCellEventTrap_6_19=sCellEventTrap_6_19, mngmtAgentTrap_8071=mngmtAgentTrap_8071, agMajVersion=agMajVersion, sCellEventTrap_4_4=sCellEventTrap_4_4, mngmtAgentTrap_17012=mngmtAgentTrap_17012, mngmtAgentTrap_27018=mngmtAgentTrap_27018, emuEventTrapInformative=emuEventTrapInformative, scellEntry=scellEntry, sCellEventTrap_4_8=sCellEventTrap_4_8, mngmtAgentTrap_2092=mngmtAgentTrap_2092, mngmtAgentTrap_21007=mngmtAgentTrap_21007, mngmtAgentTrap_111=mngmtAgentTrap_111, sCellEventTrap_7_1=sCellEventTrap_7_1, sCellEventTrap_6_2a=sCellEventTrap_6_2a, sCellEventTrap_c_9=sCellEventTrap_c_9, srvModel=srvModel, mngmtAgentTrap_1010=mngmtAgentTrap_1010, mngmtAgentTrap_18=mngmtAgentTrap_18, mngmtAgentTrap_4042=mngmtAgentTrap_4042, mngmtAgentTrap_2081=mngmtAgentTrap_2081, hostName=hostName, mngmtAgentTrap_27006=mngmtAgentTrap_27006, mngmtAgentTrap_42=mngmtAgentTrap_42, mngmtAgentTrap_6036=mngmtAgentTrap_6036, mngmtAgentTrap_3067=mngmtAgentTrap_3067, mngmtAgentTrap_16012=mngmtAgentTrap_16012, sCellEventTrap_4_3=sCellEventTrap_4_3, mngmtAgentTrap_74=mngmtAgentTrap_74, mngmtAgentTrap_17002=mngmtAgentTrap_17002, mngmtAgentTrap_8052=mngmtAgentTrap_8052, mngmtAgentTrap_6028=mngmtAgentTrap_6028, mngmtAgentTrap_9021=mngmtAgentTrap_9021, sCellEventTrap_9_23=sCellEventTrap_9_23, mngmtAgentTrap_17=mngmtAgentTrap_17, mngmtAgentTrap_27028=mngmtAgentTrap_27028, mngmtAgentTrap_110=mngmtAgentTrap_110, mngmtAgentTrap_5011=mngmtAgentTrap_5011, sCellEventTrap_d_82=sCellEventTrap_d_82, sCellEventTrap_9_24=sCellEventTrap_9_24, mngmtAgentTrap_6018=mngmtAgentTrap_6018, mngmtAgentTrap_4034=mngmtAgentTrap_4034, sCellEventTrap_d_7e=sCellEventTrap_d_7e, sCellEventTrap_9_40=sCellEventTrap_9_40, mngmtAgentTrap_27=mngmtAgentTrap_27, mngmtAgentTrap_2021=mngmtAgentTrap_2021, sCellEventTrap_9_2f=sCellEventTrap_9_2f, mngmtAgentTrap_55=mngmtAgentTrap_55, sCellEventTrap_83_2=sCellEventTrap_83_2, mngmtAgentTrap_1008=mngmtAgentTrap_1008, mngmtAgentTrap_79=mngmtAgentTrap_79, mngmtAgentTrap_1011=mngmtAgentTrap_1011, mngmtAgentTrap_77=mngmtAgentTrap_77, sCellEventTrap_3_6=sCellEventTrap_3_6, mngmtAgentTrap_18002=mngmtAgentTrap_18002, mngmtAgentTrap_24004=mngmtAgentTrap_24004, sCellEventTrap_3_3=sCellEventTrap_3_3, mngmtAgentTrap_8050=mngmtAgentTrap_8050, agentEntry=agentEntry, mngmtAgentTrap_20005=mngmtAgentTrap_20005, mngmtAgentTrap_10010=mngmtAgentTrap_10010, sCellEventTrap_6_8=sCellEventTrap_6_8, mngmtAgentTrap_27047=mngmtAgentTrap_27047, sCellEventTrap_9_d7=sCellEventTrap_9_d7, mngmtAgentTrap_9002=mngmtAgentTrap_9002, mngmtAgentTrap_9020=mngmtAgentTrap_9020, mngmtAgentTrap_5018=mngmtAgentTrap_5018, sCellEventTrap_d_33=sCellEventTrap_d_33, mngmtAgentTrap_109=mngmtAgentTrap_109, mngmtAgentTrap_2042=mngmtAgentTrap_2042, mngmtAgentTrap_3062=mngmtAgentTrap_3062, mngmtAgentTrap_8021=mngmtAgentTrap_8021, mngmtAgentTrap_3012=mngmtAgentTrap_3012, mngmtAgentTrap_10035=mngmtAgentTrap_10035, mngmtAgentTrap_17005=mngmtAgentTrap_17005, mngmtAgentTrap_9032=mngmtAgentTrap_9032, mngmtAgentTrap_20023=mngmtAgentTrap_20023, mngmtAgentTrap_4005=mngmtAgentTrap_4005, mngmtAgentTrap_5019=mngmtAgentTrap_5019, mngmtAgentTrap_10038=mngmtAgentTrap_10038, sCellEventTrap_9_f=sCellEventTrap_9_f, mngmtAgentTrap_13020=mngmtAgentTrap_13020, mngmtAgentTrap_14007=mngmtAgentTrap_14007, mngmtAgentTrap_27031=mngmtAgentTrap_27031, mngmtAgentTrap_6=mngmtAgentTrap_6, mngmtAgentTrap_18070=mngmtAgentTrap_18070, agDescription=agDescription, sCellEventTrap_c_10=sCellEventTrap_c_10, mngmtAgentTrap_4036=mngmtAgentTrap_4036, mngmtAgentTrap_8058=mngmtAgentTrap_8058, mngmtAgentTrap_16008=mngmtAgentTrap_16008, mngmtAgentTrap_21016=mngmtAgentTrap_21016, mngmtAgentTrap_24002=mngmtAgentTrap_24002, sCellEventTrap_9_76=sCellEventTrap_9_76, mngmtAgentTrap_4014=mngmtAgentTrap_4014, mngmtAgentTrap_8084=mngmtAgentTrap_8084, sCellEventTrap_9_3c=sCellEventTrap_9_3c, mngmtAgentTrap_8046=mngmtAgentTrap_8046, mngmtAgentTrap_26016=mngmtAgentTrap_26016, mngmtAgentTrap_78=mngmtAgentTrap_78, sCellEventTrap_4_f=sCellEventTrap_4_f, sCellEventTrap_6_21=sCellEventTrap_6_21, mngmtAgentTrap_85=mngmtAgentTrap_85, mngmtAgentTrap_3079=mngmtAgentTrap_3079, mngmtAgentTrap_4017=mngmtAgentTrap_4017, mngmtAgentTrap_6013=mngmtAgentTrap_6013, mngmtAgentTrap_4021=mngmtAgentTrap_4021, mngmtAgentTrap_16023=mngmtAgentTrap_16023, mngmtAgentTrap_19=mngmtAgentTrap_19, mngmtAgentTrap_8014=mngmtAgentTrap_8014, mngmtAgentTrap_21001=mngmtAgentTrap_21001, mngmtAgentTrap_21019=mngmtAgentTrap_21019, sCellEventTrap_9_67=sCellEventTrap_9_67, mngmtAgentTrap_53=mngmtAgentTrap_53, mngmtAgentTrap_2096=mngmtAgentTrap_2096, mngmtAgentTrap_71=mngmtAgentTrap_71, mngmtAgentTrap_27036=mngmtAgentTrap_27036, mngmtAgentTrap_89=mngmtAgentTrap_89, mngmtAgentTrap_1012=mngmtAgentTrap_1012, mngmtAgentTrap_1013=mngmtAgentTrap_1013, mngmtAgentTrap_8081=mngmtAgentTrap_8081, mngmtAgentTrap_11002=mngmtAgentTrap_11002, shelf=shelf, sCellEventTrap_6_16=sCellEventTrap_6_16, mngmtAgentTrap_17001=mngmtAgentTrap_17001, mngmtAgentTrap_6037=mngmtAgentTrap_6037, mngmtAgentTrap_2086=mngmtAgentTrap_2086, mngmtAgentTrap_6035=mngmtAgentTrap_6035, sCellEventTrap_d_83=sCellEventTrap_d_83, mngmtAgentTrap_8074=mngmtAgentTrap_8074, mngmtAgentTrap_26002=mngmtAgentTrap_26002, sCellEventTrap_6_32=sCellEventTrap_6_32, mngmtAgentTrap_27023=mngmtAgentTrap_27023, srvCPU=srvCPU, agEnterprise=agEnterprise, mngmtAgentTrap_18066=mngmtAgentTrap_18066, mngmtAgentTrap_126=mngmtAgentTrap_126, mngmtAgentTrap_16022=mngmtAgentTrap_16022, sCellEventTrap_9_47=sCellEventTrap_9_47, sCellEventTrap_9_7a=sCellEventTrap_9_7a, sCellEventTrap_c_7=sCellEventTrap_c_7, mngmtAgentTrap_2002=mngmtAgentTrap_2002, mngmtAgentTrap_9006=mngmtAgentTrap_9006, sCellEventTrap_c_5=sCellEventTrap_c_5, sCellEventTrap_d_dd=sCellEventTrap_d_dd, mngmtAgentTrap_12=mngmtAgentTrap_12, mngmtAgentTrap_2089=mngmtAgentTrap_2089, mngmtAgentTrap_3057=mngmtAgentTrap_3057, mngmtAgentTrap_6019=mngmtAgentTrap_6019, mngmtAgentTrap_6021=mngmtAgentTrap_6021, sCellEventTrap_6_10=sCellEventTrap_6_10, mngmtAgentTrap_3050=mngmtAgentTrap_3050, sCellEventTrap_6_29=sCellEventTrap_6_29, mngmtAgentTrap_8018=mngmtAgentTrap_8018, shelfTotal=shelfTotal, sCellEventTrap_9_1d=sCellEventTrap_9_1d, mngmtAgentTrap_106=mngmtAgentTrap_106, mngmtAgentTrap_17008=mngmtAgentTrap_17008, mngmtAgentTrap_21006=mngmtAgentTrap_21006, sCellEventTrap_9_2=sCellEventTrap_9_2, mngmtAgentTrap_16030=mngmtAgentTrap_16030, mngmtAgentTrap_3028=mngmtAgentTrap_3028, mngmtAgentTrap_3077=mngmtAgentTrap_3077, mngmtAgentTrap_26=mngmtAgentTrap_26, mngmtAgentTrap_122=mngmtAgentTrap_122, mngmtAgentTrap_9011=mngmtAgentTrap_9011, mngmtAgentTrap_27011=mngmtAgentTrap_27011, mngmtAgentTrap_90=mngmtAgentTrap_90, mngmtAgentTrap_26014=mngmtAgentTrap_26014, sCellEventTrap_4_11=sCellEventTrap_4_11, mngmtAgentTrap_25010=mngmtAgentTrap_25010, mngmtAgentTrap_4015=mngmtAgentTrap_4015, sCellEventTrap_d_0=sCellEventTrap_d_0, mngmtAgentTrap_113=mngmtAgentTrap_113, sCellEventTrap_9_3b=sCellEventTrap_9_3b, mngmtAgentTrap_8088=mngmtAgentTrap_8088, mngmtAgentTrap_27012=mngmtAgentTrap_27012, sCellEventTrap_4_a=sCellEventTrap_4_a)
mibBuilder.exportSymbols("CPQHSV110V3-MIB", mngmtAgentTrap_3080=mngmtAgentTrap_3080, mngmtAgentTrap_16026=mngmtAgentTrap_16026, sCellEventTrap_9_2b=sCellEventTrap_9_2b, mngmtAgentTrap_39=mngmtAgentTrap_39, scellEventTimeDate=scellEventTimeDate, srvOS=srvOS, mngmtAgentTrap_17014=mngmtAgentTrap_17014, mngmtAgentTrap_5001=mngmtAgentTrap_5001, mngmtAgentTrap_6029=mngmtAgentTrap_6029, mngmtAgentTrap_8047=mngmtAgentTrap_8047, mngmtAgentTrap_16021=mngmtAgentTrap_16021, mngmtAgentTrap_1014=mngmtAgentTrap_1014, mngmtAgentTrap_3071=mngmtAgentTrap_3071, mngmtAgentTrap_16027=mngmtAgentTrap_16027, mngmtAgentTrap_26013=mngmtAgentTrap_26013, mngmtAgentTrap_8004=mngmtAgentTrap_8004, mngmtAgentTrap_20015=mngmtAgentTrap_20015, sCellEventTrap_4_0=sCellEventTrap_4_0, sCellEventTrap_9_6e=sCellEventTrap_9_6e, mngmtAgentTrap_8089=mngmtAgentTrap_8089, mngmtAgentTrap_25014=mngmtAgentTrap_25014, mngmtAgentTrap_21008=mngmtAgentTrap_21008, sCellEventTrap_3_5=sCellEventTrap_3_5, mngmtAgentTrap_4025=mngmtAgentTrap_4025, mngmtAgentTrap_23=mngmtAgentTrap_23, mngmtAgentTrap_2083=mngmtAgentTrap_2083, mngmtAgentTrap_3002=mngmtAgentTrap_3002, sCellEventTrap_9_2d=sCellEventTrap_9_2d, sCellEventTrap_6_33=sCellEventTrap_6_33, mngmtAgentTrap_3092=mngmtAgentTrap_3092, mngmtAgentTrap_6038=mngmtAgentTrap_6038, sCellEventTrap_9_6b=sCellEventTrap_9_6b, sCellEventTrap_6_2b=sCellEventTrap_6_2b, sCellEventTrap_9_cd=sCellEventTrap_9_cd, sCellEventTrap_4_10=sCellEventTrap_4_10, nscEntryIndex=nscEntryIndex, scellEIP=scellEIP, mngmtAgentTrap_12008=mngmtAgentTrap_12008, mngmtAgentTrap_10042=mngmtAgentTrap_10042, mngmtAgentTrap_24003=mngmtAgentTrap_24003, mngmtAgentTrap_25003=mngmtAgentTrap_25003, sCellEventTrap_9_13=sCellEventTrap_9_13, mngmtAgentTrap_30=mngmtAgentTrap_30, sCellEventTrap_9_65=sCellEventTrap_9_65, mngmtAgentTrap_21004=mngmtAgentTrap_21004, mngmtAgentTrap_27027=mngmtAgentTrap_27027, srvBiosVersion=srvBiosVersion, mngmtAgentTrap_5012=mngmtAgentTrap_5012, cpqHSVServer=cpqHSVServer, mngmtAgentTrap_33=mngmtAgentTrap_33, sCellEventTrap_6_23=sCellEventTrap_6_23, mngmtAgentTrap_16033=mngmtAgentTrap_16033, cpqHSVAgent=cpqHSVAgent, mngmtAgentTrap_18076=mngmtAgentTrap_18076, mngmtAgentTrap_27035=mngmtAgentTrap_27035, mngmtAgentTrap_9026=mngmtAgentTrap_9026, mngmtAgentTrap_1009=mngmtAgentTrap_1009, sCellEventTrap_6_12=sCellEventTrap_6_12, mngmtAgentTrap_2022=mngmtAgentTrap_2022, mngmtAgentTrap_16013=mngmtAgentTrap_16013, mngmtAgentTrap_6007=mngmtAgentTrap_6007, mngmtAgentTrap_3076=mngmtAgentTrap_3076, mngmtAgentTrap_9029=mngmtAgentTrap_9029, agentEventCode=agentEventCode, mngmtAgentTrap_3009=mngmtAgentTrap_3009, mngmtAgentTrap_8020=mngmtAgentTrap_8020, mngmtAgentTrap_81=mngmtAgentTrap_81, mngmtAgentTrap_6025=mngmtAgentTrap_6025, mngmtAgentTrap_18019=mngmtAgentTrap_18019, mngmtAgentTrap_95=mngmtAgentTrap_95, mngmtAgentTrap_2090=mngmtAgentTrap_2090, mngmtAgentTrap_8061=mngmtAgentTrap_8061, mngmtAgentTrap_18047=mngmtAgentTrap_18047, sCellEventTrap_7_8=sCellEventTrap_7_8, mngmtAgentTrap_18067=mngmtAgentTrap_18067, sCellEventTrap_4_6=sCellEventTrap_4_6, srvSubModel=srvSubModel, mngmtAgentTrap_108=mngmtAgentTrap_108, mngmtAgentTrap_6015=mngmtAgentTrap_6015, mngmtAgentTrap_8035=mngmtAgentTrap_8035, scellStatusTable=scellStatusTable, sCellEventTrap_c_1=sCellEventTrap_c_1, sCellEventTrap_83_5=sCellEventTrap_83_5, mngmtAgentTrap_6009=mngmtAgentTrap_6009, mngmtAgentTrap_8026=mngmtAgentTrap_8026, mngmtAgentTrap_8045=mngmtAgentTrap_8045, mngmtAgentTrap_14004=mngmtAgentTrap_14004, mngmtAgentTrap_2016=mngmtAgentTrap_2016, mngmtAgentTrap_18080=mngmtAgentTrap_18080, mngmtAgentTrap_26008=mngmtAgentTrap_26008, sCellEventTrap_1_1=sCellEventTrap_1_1, sCellEventTrap_3_8=sCellEventTrap_3_8, mngmtAgentTrap_8065=mngmtAgentTrap_8065, mngmtAgentTrap_115=mngmtAgentTrap_115, mngmtAgentTrap_128=mngmtAgentTrap_128, sCellEventTrap_9_38=sCellEventTrap_9_38, sCellEventTrap_9_36=sCellEventTrap_9_36, mngmtAgentTrap_8032=mngmtAgentTrap_8032, sCellEventTrap_6_b=sCellEventTrap_6_b, mngmtAgentTrap_4027=mngmtAgentTrap_4027, mngmtAgentTrap_2082=mngmtAgentTrap_2082, mngmtAgentTrap_10024=mngmtAgentTrap_10024, sCellEventTrap_4_c=sCellEventTrap_4_c, mngmtAgentTrap_27007=mngmtAgentTrap_27007, mngmtAgentTrap_10004=mngmtAgentTrap_10004, mngmtAgentTrap_21011=mngmtAgentTrap_21011, sCellEventTrap_9_6a=sCellEventTrap_9_6a, mngmtAgentTrap_2025=mngmtAgentTrap_2025, mngmtAgentTrap_3036=mngmtAgentTrap_3036, mngmtAgentTrap_18042=mngmtAgentTrap_18042, sCellEventTrap_9_27=sCellEventTrap_9_27, mngmtAgentTrap_15004=mngmtAgentTrap_15004, mngmtAgentTrap_132=mngmtAgentTrap_132, sCellEventTrap_83_1=sCellEventTrap_83_1, mngmtAgentTrap_9=mngmtAgentTrap_9, mngmtAgentTrap_17009=mngmtAgentTrap_17009, mngmtAgentTrap_9014=mngmtAgentTrap_9014, mngmtAgentTrap_4011=mngmtAgentTrap_4011, mngmtAgentTrap_13015=mngmtAgentTrap_13015, mngmtAgentTrap_8016=mngmtAgentTrap_8016, mngmtAgentTrap_9010=mngmtAgentTrap_9010, mngmtAgentTrap_18010=mngmtAgentTrap_18010, mngmtAgentTrap_119=mngmtAgentTrap_119, mngmtAgentTrap_131=mngmtAgentTrap_131, scellEntryIndex=scellEntryIndex, sCellEventTrap_9_32=sCellEventTrap_9_32, mngmtAgentTrap_18068=mngmtAgentTrap_18068, scellECode=scellECode, sCellEventTrap_6_1f=sCellEventTrap_6_1f, sCellEventTrap_4_5=sCellEventTrap_4_5, mngmtAgentTrap_6026=mngmtAgentTrap_6026, sCellEventTrap_9_1e=sCellEventTrap_9_1e, sCellEventTrap_9_29=sCellEventTrap_9_29, mngmtAgentTrap_6027=mngmtAgentTrap_6027, mngmtAgentTrap_4001=mngmtAgentTrap_4001, mngmtAgentTrap_3024=mngmtAgentTrap_3024, mngmtAgentTrap_16025=mngmtAgentTrap_16025, mngmtAgentTrap_13009=mngmtAgentTrap_13009, sCellEventTrap_6_d=sCellEventTrap_6_d, sCellEventTrap_9_11=sCellEventTrap_9_11, mngmtAgentTrap_2075=mngmtAgentTrap_2075, mngmtAgentTrap_8076=mngmtAgentTrap_8076, mngmtAgentTrap_8082=mngmtAgentTrap_8082, mngmtAgentTrap_25=mngmtAgentTrap_25, sCellEventTrap_6_1c=sCellEventTrap_6_1c, mngmtAgentTrap_4051=mngmtAgentTrap_4051, sCellEventTrap_d_47=sCellEventTrap_d_47, sCellEventTrap_6_9=sCellEventTrap_6_9, mngmtAgentTrap_125=mngmtAgentTrap_125, mngmtAgentTrap_10011=mngmtAgentTrap_10011, mngmtAgentTrap_2074=mngmtAgentTrap_2074, mngmtAgentTrap_12004=mngmtAgentTrap_12004, mngmtAgentTrap_3091=mngmtAgentTrap_3091, mngmtAgentTrap_6017=mngmtAgentTrap_6017, nsc=nsc, mngmtAgentTrap_14006=mngmtAgentTrap_14006, sCellEventTrap_c_8=sCellEventTrap_c_8, mngmtAgentTrap_16029=mngmtAgentTrap_16029, mngmtAgentTrap_3=mngmtAgentTrap_3, mngmtAgentTrap_8003=mngmtAgentTrap_8003, host=host, mngmtAgentTrap_10013=mngmtAgentTrap_10013, sCellEventTrap_d_34=sCellEventTrap_d_34, mngmtAgentTrap_18081=mngmtAgentTrap_18081, mngmtAgentTrap_82=mngmtAgentTrap_82, mngmtAgentTrap_5006=mngmtAgentTrap_5006, mngmtAgentTrap_2048=mngmtAgentTrap_2048, mngmtAgentTrap_3065=mngmtAgentTrap_3065, sCellEventTrap_c_a=sCellEventTrap_c_a, mngmtAgentTrap_58=mngmtAgentTrap_58, mngmtAgentTrap_8017=mngmtAgentTrap_8017, mngmtAgentTrap_25017=mngmtAgentTrap_25017, mngmtAgentTrap_13004=mngmtAgentTrap_13004, mngmtAgentTrap_8059=mngmtAgentTrap_8059, sCellEventTrap_6_27=sCellEventTrap_6_27, sCellEventTrap_9_2c=sCellEventTrap_9_2c, mngmtAgentTrap_51=mngmtAgentTrap_51, hsvObject=hsvObject, sCellEventTrap_6_39=sCellEventTrap_6_39, mngmtAgentTrap_76=mngmtAgentTrap_76, sCellEventTrap_9_68=sCellEventTrap_9_68, mngmtAgentTrap_133=mngmtAgentTrap_133, mngmtAgentTrap_2034=mngmtAgentTrap_2034, mngmtAgentTrap_2069=mngmtAgentTrap_2069, mngmtAgentTrap_10025=mngmtAgentTrap_10025, mngmtAgentTrap_2026=mngmtAgentTrap_2026, mngmtAgentTrap_2084=mngmtAgentTrap_2084, sCellEventTrap_9_1b=sCellEventTrap_9_1b, sCellEventTrap_3_7=sCellEventTrap_3_7, sCellEventTrap_1_0=sCellEventTrap_1_0, sCellEventTrap_9_75=sCellEventTrap_9_75, mngmtAgentTrap_5=mngmtAgentTrap_5, mngmtAgentTrap_18036=mngmtAgentTrap_18036, mngmtAgentTrap_5008=mngmtAgentTrap_5008, shelfErrorCode=shelfErrorCode, sCellEventTrap_6_36=sCellEventTrap_6_36, mngmtAgentTrap_8068=mngmtAgentTrap_8068, mngmtAgentTrap_8079=mngmtAgentTrap_8079, mngmtAgentTrap_27039=mngmtAgentTrap_27039, mngmtAgentTrap_17013=mngmtAgentTrap_17013, sCellEventTrap_3_0=sCellEventTrap_3_0, sCellEventTrap_d_3=sCellEventTrap_d_3, mngmtAgentTrap_18063=mngmtAgentTrap_18063, mngmtAgentTrap_8066=mngmtAgentTrap_8066, mngmtAgentTrap_18073=mngmtAgentTrap_18073, cpqElementManager=cpqElementManager, sCellEventTrap_6_31=sCellEventTrap_6_31, mngmtAgentTrap_70=mngmtAgentTrap_70, sCellEventTrap_d_71=sCellEventTrap_d_71, mngmtAgentTrap_18040=mngmtAgentTrap_18040, sCellEventTrap_9_6c=sCellEventTrap_9_6c, mngmtAgentTrap_21012=mngmtAgentTrap_21012, mngmtAgentTrap_4035=mngmtAgentTrap_4035, mngmtAgentTrap_18008=mngmtAgentTrap_18008, mngmtAgentTrap_8069=mngmtAgentTrap_8069, sCellEventTrap_9_d6=sCellEventTrap_9_d6, mngmtAgentTrap_3055=mngmtAgentTrap_3055, mngmtAgentTrap_10030=mngmtAgentTrap_10030, mngmtAgentTrap_73=mngmtAgentTrap_73, mngmtAgentTrap_25006=mngmtAgentTrap_25006, sCellEventTrap_9_d3=sCellEventTrap_9_d3, mngmtAgentTrap_3045=mngmtAgentTrap_3045, sCellEventTrap_d_a1=sCellEventTrap_d_a1, mngmtAgentTrap_66=mngmtAgentTrap_66, mngmtAgentTrap_25011=mngmtAgentTrap_25011, mngmtAgentTrap_10041=mngmtAgentTrap_10041, mngmtAgentTrap_100=mngmtAgentTrap_100, mngmtAgentTrap_26015=mngmtAgentTrap_26015, mngmtAgentTrap_21013=mngmtAgentTrap_21013, agentEventLevel=agentEventLevel, hostEntry=hostEntry, mngmtAgentTrap_4053=mngmtAgentTrap_4053, mngmtAgentTrap_27041=mngmtAgentTrap_27041, sCellEventTrap_d_8d=sCellEventTrap_d_8d, mngmtAgentTrap_7=mngmtAgentTrap_7, emuEventTrapUnrecoverable=emuEventTrapUnrecoverable, mngmtAgentTrap_9005=mngmtAgentTrap_9005, sCellEventTrap_7_0=sCellEventTrap_7_0, mngmtAgentTrap_121=mngmtAgentTrap_121, scellSWComponent=scellSWComponent, sCellEventTrap_4_d=sCellEventTrap_4_d, sCellEventTrap_6_3a=sCellEventTrap_6_3a, mngmtAgentTrap_2093=mngmtAgentTrap_2093, mngmtAgentTrap_2036=mngmtAgentTrap_2036, mngmtAgentTrap_9012=mngmtAgentTrap_9012, mngmtAgentTrap_25019=mngmtAgentTrap_25019, sCellEventTrap_9_37=sCellEventTrap_9_37, mngmtAgentTrap_3081=mngmtAgentTrap_3081, mngmtAgentTrap_9007=mngmtAgentTrap_9007, mngmtAgentTrap_3049=mngmtAgentTrap_3049, mngmtAgentTrap_10012=mngmtAgentTrap_10012, sCellEventTrap_9_49=sCellEventTrap_9_49, mngmtAgentTrap_8028=mngmtAgentTrap_8028, mngmtAgentTrap_16024=mngmtAgentTrap_16024)
mibBuilder.exportSymbols("CPQHSV110V3-MIB", mngmtAgentTrap_17017=mngmtAgentTrap_17017, mngmtAgentTrap_6034=mngmtAgentTrap_6034, mngmtAgentTrap_4052=mngmtAgentTrap_4052, mngmtAgentTrap_20003=mngmtAgentTrap_20003, mngmtAgentTrap_3046=mngmtAgentTrap_3046, sCellEventTrap_7_4=sCellEventTrap_7_4, mngmtAgentTrap_5016=mngmtAgentTrap_5016, emuEventTrapNoncritical=emuEventTrapNoncritical, sCellEventTrap_9_1=sCellEventTrap_9_1, mngmtAgentTrap_8010=mngmtAgentTrap_8010, mngmtAgentTrap_9001=mngmtAgentTrap_9001, mngmtAgentTrap_18001=mngmtAgentTrap_18001, mngmtAgentTrap_27004=mngmtAgentTrap_27004, mngmtAgentTrap_2013=mngmtAgentTrap_2013, sCellEventTrap_9_7=sCellEventTrap_9_7, mngmtAgentTrap_3020=mngmtAgentTrap_3020, mngmtAgentTrap_2077=mngmtAgentTrap_2077, mngmtAgentTrap_120=mngmtAgentTrap_120, mngmtAgentTrap_14013=mngmtAgentTrap_14013, maHSVMibRev=maHSVMibRev, mngmtAgentTrap_23002=mngmtAgentTrap_23002, agStatusTable=agStatusTable, mngmtAgentTrap_8036=mngmtAgentTrap_8036, mngmtAgentTrap_6008=mngmtAgentTrap_6008, sCellEventTrap_d_4c=sCellEventTrap_d_4c, mngmtAgentTrap_17015=mngmtAgentTrap_17015, sCellEventTrap_d_b5=sCellEventTrap_d_b5, sCellEventTrap_c_11=sCellEventTrap_c_11, mngmtAgentTrap_2040=mngmtAgentTrap_2040, mngmtAgentTrap_8009=mngmtAgentTrap_8009, mngmtAgentTrap_27044=mngmtAgentTrap_27044, mngmtAgentTrap_5014=mngmtAgentTrap_5014, sCellEventTrap_9_44=sCellEventTrap_9_44, srvComputerType=srvComputerType, mngmtAgentTrap_2032=mngmtAgentTrap_2032, sCellEventTrap_9_22=sCellEventTrap_9_22, scellEventCode=scellEventCode, sCellEventTrap_9_2a=sCellEventTrap_9_2a, mngmtAgentTrap_6014=mngmtAgentTrap_6014, mngmtAgentTrap_8006=mngmtAgentTrap_8006, mngmtAgentTrap_15001=mngmtAgentTrap_15001, shelfId=shelfId, sCellEventTrap_3_4=sCellEventTrap_3_4, mngmtAgentTrap_48=mngmtAgentTrap_48, maHSVMibRevMajor=maHSVMibRevMajor, mngmtAgentTrap_16015=mngmtAgentTrap_16015, mngmtAgentTrap_25016=mngmtAgentTrap_25016, mngmtAgentTrap_2041=mngmtAgentTrap_2041, mngmtAgentTrap_6024=mngmtAgentTrap_6024, mngmtAgentTrap_8041=mngmtAgentTrap_8041, hostTotal=hostTotal, mngmtAgentTrap_15008=mngmtAgentTrap_15008, sCellEventTrap_9_20=sCellEventTrap_9_20, mngmtAgentTrap_34=mngmtAgentTrap_34, mngmtAgentTrap_6005=mngmtAgentTrap_6005, nscTotal=nscTotal, agentEventDescription=agentEventDescription, mngmtAgentTrap_9015=mngmtAgentTrap_9015, mngmtAgentTrap_3048=mngmtAgentTrap_3048, mngmtAgentTrap_40=mngmtAgentTrap_40, mngmtAgentTrap_25001=mngmtAgentTrap_25001, sCellEventTrap_9_ca=sCellEventTrap_9_ca, mngmtAgentTrap_8033=mngmtAgentTrap_8033, mngmtAgentTrap_2103=mngmtAgentTrap_2103, mngmtAgentTrap_18004=mngmtAgentTrap_18004, mngmtAgentTrap_25004=mngmtAgentTrap_25004, mngmtAgentTrap_2078=mngmtAgentTrap_2078, sCellEventTrap_6_14=sCellEventTrap_6_14, mngmtAgentTrap_9017=mngmtAgentTrap_9017, emuEventTrapCritical=emuEventTrapCritical, sCellEventTrap_42_3=sCellEventTrap_42_3, mngmtAgentTrap_6012=mngmtAgentTrap_6012, mngmtAgentTrap_8056=mngmtAgentTrap_8056, mngmtAgentTrap_9022=mngmtAgentTrap_9022, mngmtAgentTrap_24001=mngmtAgentTrap_24001, mngmtAgentTrap_27049=mngmtAgentTrap_27049, sCellEventTrap_7_2=sCellEventTrap_7_2, nscStatus=nscStatus, mngmtAgentTrap_3051=mngmtAgentTrap_3051, sCellEventTrap_9_14=sCellEventTrap_9_14, mngmtAgentTrap_16016=mngmtAgentTrap_16016, mngmtAgentTrap_105=mngmtAgentTrap_105, sCellEventTrap_9_3a=sCellEventTrap_9_3a, sCellEventTrap_d_7f=sCellEventTrap_d_7f, mngmtAgentTrap_15006=mngmtAgentTrap_15006, mngmtAgentTrap_3061=mngmtAgentTrap_3061, mngmtAgentTrap_25012=mngmtAgentTrap_25012, mngmtAgentTrap_13002=mngmtAgentTrap_13002, sCellEventTrap_6_5=sCellEventTrap_6_5, mngmtAgentTrap_8=mngmtAgentTrap_8, mngmtAgentTrap_18052=mngmtAgentTrap_18052, mngmtAgentTrap_27014=mngmtAgentTrap_27014, mngmtAgentTrap_3017=mngmtAgentTrap_3017, sCellEventTrap_9_d0=sCellEventTrap_9_d0, agentEntryIndex=agentEntryIndex, sCellEventTrap_d_35=sCellEventTrap_d_35, sCellEventTrap_9_43=sCellEventTrap_9_43, sCellEventTrap_7_3=sCellEventTrap_7_3, mngmtAgentTrap_1003=mngmtAgentTrap_1003, mngmtAgentTrap_10019=mngmtAgentTrap_10019, sCellEventTrap_9_69=sCellEventTrap_9_69, mngmtAgentTrap_2035=mngmtAgentTrap_2035, mngmtAgentTrap_4049=mngmtAgentTrap_4049, mngmtAgentTrap_10017=mngmtAgentTrap_10017, mngmtAgentTrap_8039=mngmtAgentTrap_8039, mngmtAgentTrap_16004=mngmtAgentTrap_16004, mngmtAgentTrap_10043=mngmtAgentTrap_10043, mngmtAgentTrap_10=mngmtAgentTrap_10, mngmtAgentTrap_8051=mngmtAgentTrap_8051, mngmtAgentTrap_8070=mngmtAgentTrap_8070, mngmtAgentTrap_18074=mngmtAgentTrap_18074, sCellEventTrap_c_4=sCellEventTrap_c_4, mngmtAgentTrap_14002=mngmtAgentTrap_14002, mngmtAgentTrap_5010=mngmtAgentTrap_5010, sCellEventTrap_9_cc=sCellEventTrap_9_cc, mngmtAgentTrap_10018=mngmtAgentTrap_10018, sCellEventTrap_b_0=sCellEventTrap_b_0, mngmtAgentTrap_27016=mngmtAgentTrap_27016, mngmtAgentTrap_10014=mngmtAgentTrap_10014, sCellEventTrap_9_28=sCellEventTrap_9_28, mngmtAgentTrap_52=mngmtAgentTrap_52, mngmtAgentTrap_13003=mngmtAgentTrap_13003, mngmtAgentTrap_11001=mngmtAgentTrap_11001, mngmtAgentTrap_4037=mngmtAgentTrap_4037, mngmtAgentTrap_27034=mngmtAgentTrap_27034, mngmtAgentTrap_35=mngmtAgentTrap_35, sCellEventTrap_d_85=sCellEventTrap_d_85, mngmtAgentTrap_2023=mngmtAgentTrap_2023, sCellEventTrap_9_c8=sCellEventTrap_9_c8, sCellEventTrap_c_3=sCellEventTrap_c_3, mngmtAgentTrap_20020=mngmtAgentTrap_20020, hostStatus=hostStatus, mngmtAgentTrap_27002=mngmtAgentTrap_27002, mngmtAgentTrap_10023=mngmtAgentTrap_10023, mngmtAgentTrap_18018=mngmtAgentTrap_18018, sCellEventTrap_6_34=sCellEventTrap_6_34, mngmtAgentTrap_104=mngmtAgentTrap_104, mngmtAgentTrap_12003=mngmtAgentTrap_12003, mngmtAgentTrap_117=mngmtAgentTrap_117, sCellEventTrap_6_24=sCellEventTrap_6_24, mngmtAgentTrap_2085=mngmtAgentTrap_2085, mngmtAgentTrap_8019=mngmtAgentTrap_8019, mngmtAgentTrap_5005=mngmtAgentTrap_5005, mngmtAgentTrap_16014=mngmtAgentTrap_16014, mngmtAgentTrap_2003=mngmtAgentTrap_2003, mngmtAgentTrap_8025=mngmtAgentTrap_8025, mngmtAgentTrap_8087=mngmtAgentTrap_8087, mngmtAgentTrap_14001=mngmtAgentTrap_14001, mngmtAgentTrap_2071=mngmtAgentTrap_2071, mngmtAgentTrap_6033=mngmtAgentTrap_6033, mngmtAgentTrap_2063=mngmtAgentTrap_2063, sCellEventTrap_c_2=sCellEventTrap_c_2, sCellEventTrap_6_1d=sCellEventTrap_6_1d, mngmtAgentTrap_18060=mngmtAgentTrap_18060, mngmtAgentTrap_20021=mngmtAgentTrap_20021, mngmtAgentTrap_27010=mngmtAgentTrap_27010, mngmtAgentTrap_61=mngmtAgentTrap_61, mngmtAgentTrap_3003=mngmtAgentTrap_3003, mngmtAgentTrap_31=mngmtAgentTrap_31, mngmtAgentTrap_17006=mngmtAgentTrap_17006, sCellEventTrap_d_2=sCellEventTrap_d_2, sCellEventTrap_6_30=sCellEventTrap_6_30, mngmtAgentTrap_2006=mngmtAgentTrap_2006, sCellEventTrap_9_2e=sCellEventTrap_9_2e, mngmtAgentTrap_6001=mngmtAgentTrap_6001, sCellEventTrap_9_35=sCellEventTrap_9_35, mngmtAgentTrap_6030=mngmtAgentTrap_6030, sCellEventTrap_9_16=sCellEventTrap_9_16, mngmtAgentTrap_56=mngmtAgentTrap_56, mngmtAgentTrap_118=mngmtAgentTrap_118, mngmtAgentTrap_4032=mngmtAgentTrap_4032, mngmtAgentTrap_3090=mngmtAgentTrap_3090, mngmtAgentTrap_16032=mngmtAgentTrap_16032, sCellEventTrap_9_79=sCellEventTrap_9_79, mngmtAgentTrap_1004=mngmtAgentTrap_1004, mngmtAgentTrap_25018=mngmtAgentTrap_25018, mngmtAgentTrap_8024=mngmtAgentTrap_8024, sCellEventTrap_9_73=sCellEventTrap_9_73, sCellEventTrap_7_6=sCellEventTrap_7_6, mngmtAgentTrap_2070=mngmtAgentTrap_2070, mngmtAgentTrap_9008=mngmtAgentTrap_9008, mngmtAgentTrap_123=mngmtAgentTrap_123, mngmtAgentTrap_28=mngmtAgentTrap_28, mngmtAgentTrap_21015=mngmtAgentTrap_21015, mngmtAgentTrap_15009=mngmtAgentTrap_15009, mngmtAgentTrap_43=mngmtAgentTrap_43, scellUUID=scellUUID, mngmtAgentTrap_93=mngmtAgentTrap_93, sCellEventTrap_d_f0=sCellEventTrap_d_f0, sCellEventTrap_83_6=sCellEventTrap_83_6, mngmtAgentTrap_4031=mngmtAgentTrap_4031, mngmtAgentTrap_2102=mngmtAgentTrap_2102, mngmtAgentTrap_16035=mngmtAgentTrap_16035, mngmtAgentTrap_8023=mngmtAgentTrap_8023, mngmtAgentTrap_38=mngmtAgentTrap_38, mngmtAgentTrap_14=mngmtAgentTrap_14, mngmtAgentTrap_3037=mngmtAgentTrap_3037, mngmtAgentTrap_3053=mngmtAgentTrap_3053, mngmtAgentTrap_4024=mngmtAgentTrap_4024, mngmtAgentTrap_1006=mngmtAgentTrap_1006, mngmtAgentTrap_9019=mngmtAgentTrap_9019, mngmtAgentTrap_62=mngmtAgentTrap_62, sCellEventTrap_6_3d=sCellEventTrap_6_3d, mngmtAgentTrap_13007=mngmtAgentTrap_13007, mngmtAgentTrap_21018=mngmtAgentTrap_21018, mngmtAgentTrap_27005=mngmtAgentTrap_27005, nscUUID=nscUUID, mngmtAgentTrap_6011=mngmtAgentTrap_6011, mngmtAgentTrap_2097=mngmtAgentTrap_2097, mngmtAgentTrap_2073=mngmtAgentTrap_2073, mngmtAgentTrap_60=mngmtAgentTrap_60, mngmtAgentTrap_3066=mngmtAgentTrap_3066, sCellEventTrap_9_45=sCellEventTrap_9_45, mngmtAgentTrap_44=mngmtAgentTrap_44, mngmtAgentTrap_63=mngmtAgentTrap_63, mngmtAgentTrap_3069=mngmtAgentTrap_3069, mngmtAgentTrap_8015=mngmtAgentTrap_8015, mngmtAgentTrap_3025=mngmtAgentTrap_3025, mngmtAgentTrap_4058=mngmtAgentTrap_4058, mngmtAgentTrap_8048=mngmtAgentTrap_8048, sCellEventTrap_6_1b=sCellEventTrap_6_1b, mngmtAgentTrap_6022=mngmtAgentTrap_6022, mngmtAgentTrap_8090=mngmtAgentTrap_8090, mngmtAgentTrap_9031=mngmtAgentTrap_9031, mngmtAgentTrap_14009=mngmtAgentTrap_14009, mngmtAgentTrap_16=mngmtAgentTrap_16, agentStatus=agentStatus, mngmtAgentTrap_10029=mngmtAgentTrap_10029, agent=agent, sCellEventTrap_9_25=sCellEventTrap_9_25, mngmtAgentTrap_4016=mngmtAgentTrap_4016, mngmtAgentTrap_2031=mngmtAgentTrap_2031, mngmtAgentTrap_8053=mngmtAgentTrap_8053, mngmtAgentTrap_10037=mngmtAgentTrap_10037, sCellEventTrap_9_48=sCellEventTrap_9_48, mngmtAgentTrap_3063=mngmtAgentTrap_3063, mngmtAgentTrap_4013=mngmtAgentTrap_4013, mngmtAgentTrap_8037=mngmtAgentTrap_8037, mngmtAgentTrap_2066=mngmtAgentTrap_2066, mngmtAgentTrap_9028=mngmtAgentTrap_9028, sCellEventTrap_9_a=sCellEventTrap_9_a, sCellEventTrap_6_26=sCellEventTrap_6_26, mngmtAgentTrap_1=mngmtAgentTrap_1, mngmtAgentTrap_2057=mngmtAgentTrap_2057, mngmtAgentTrap_26005=mngmtAgentTrap_26005, sCellEventTrap_4_b=sCellEventTrap_4_b, mngmtAgentTrap_8049=mngmtAgentTrap_8049, sCellEventTrap_6_2e=sCellEventTrap_6_2e, mngmtAgentTrap_3086=mngmtAgentTrap_3086, mngmtAgentTrap_4030=mngmtAgentTrap_4030, sCellEventTrap_9_18=sCellEventTrap_9_18, mngmtAgentTrap_6003=mngmtAgentTrap_6003, srvOSMajVersion=srvOSMajVersion, mngmtAgentTrap_6010=mngmtAgentTrap_6010)
mibBuilder.exportSymbols("CPQHSV110V3-MIB", mngmtAgentTrap_18071=mngmtAgentTrap_18071, mngmtAgentTrap_27022=mngmtAgentTrap_27022, mngmtAgentTrap_27045=mngmtAgentTrap_27045, sCellEventTrap_9_71=sCellEventTrap_9_71, agMinVersion=agMinVersion, mngmtAgentTrap_2012=mngmtAgentTrap_2012, mngmtAgentTrap_2065=mngmtAgentTrap_2065, mngmtAgentTrap_4041=mngmtAgentTrap_4041, sCellEventTrap_6_28=sCellEventTrap_6_28, mngmtAgentTrap_8062=mngmtAgentTrap_8062, sCellEventTrap_9_9=sCellEventTrap_9_9, mngmtAgentTrap_27024=mngmtAgentTrap_27024, mngmtAgentTrap_3016=mngmtAgentTrap_3016, mngmtAgentTrap_24=mngmtAgentTrap_24, mngmtAgentTrap_8022=mngmtAgentTrap_8022, mngmtAgentTrap_16017=mngmtAgentTrap_16017, mngmtAgentTrap_4020=mngmtAgentTrap_4020, mngmtAgentTrap_116=mngmtAgentTrap_116, mngmtAgentTrap_2095=mngmtAgentTrap_2095, mngmtAgentTrap_2100=mngmtAgentTrap_2100, mngmtAgentTrap_8038=mngmtAgentTrap_8038, mngmtAgentTrap_8043=mngmtAgentTrap_8043, mngmtAgentTrap_16038=mngmtAgentTrap_16038, mngmtAgentTrap_10028=mngmtAgentTrap_10028, sCellEventTrap_9_39=sCellEventTrap_9_39, mngmtAgentTrap_1007=mngmtAgentTrap_1007, mngmtAgentTrap_2050=mngmtAgentTrap_2050, srvOSMinVersion=srvOSMinVersion, mngmtAgentTrap_2051=mngmtAgentTrap_2051, sCellEventTrap_9_1a=sCellEventTrap_9_1a, mngmtAgentTrap_14008=mngmtAgentTrap_14008, mngmtAgentTrap_18049=mngmtAgentTrap_18049, mngmtAgentTrap_26011=mngmtAgentTrap_26011, sCellEventTrap_c_c=sCellEventTrap_c_c, mngmtAgentTrap_8057=mngmtAgentTrap_8057, mngmtAgentTrap_26006=mngmtAgentTrap_26006, mngmtAgentTrap_2068=mngmtAgentTrap_2068, mngmtAgentTrap_4004=mngmtAgentTrap_4004, sCellEventTrap_d_de=sCellEventTrap_d_de, mngmtAgentTrap_2087=mngmtAgentTrap_2087, mngmtAgentTrap_14010=mngmtAgentTrap_14010, mngmtAgentTrap_22002=mngmtAgentTrap_22002, mngmtAgentTrap_18022=mngmtAgentTrap_18022, agHostName=agHostName, mngmtAgentTrap_2038=mngmtAgentTrap_2038, mngmtAgentTrap_2091=mngmtAgentTrap_2091, mngmtAgentTrap_16028=mngmtAgentTrap_16028, mngmtAgentTrap_1002=mngmtAgentTrap_1002, mngmtAgentTrap_45=mngmtAgentTrap_45, mngmtAgentTrap_8080=mngmtAgentTrap_8080, mngmtAgentTrap_2011=mngmtAgentTrap_2011, mngmtAgentTrap_3095=mngmtAgentTrap_3095, scellName=scellName, mngmtAgentTrap_8034=mngmtAgentTrap_8034, sCellEventTrap_42_1=sCellEventTrap_42_1, mngmtAgentTrap_2030=mngmtAgentTrap_2030, mngmtAgentTrap_3013=mngmtAgentTrap_3013, mngmtAgentTrap_8067=mngmtAgentTrap_8067, mngmtAgentTrap_2080=mngmtAgentTrap_2080, mngmtAgentTrap_9009=mngmtAgentTrap_9009, mngmtAgentTrap_9030=mngmtAgentTrap_9030, mngmtAgentTrap_10015=mngmtAgentTrap_10015, mngmtAgentTrap_16005=mngmtAgentTrap_16005, mngmtAgentTrap_17004=mngmtAgentTrap_17004, mngmtAgentTrap_27013=mngmtAgentTrap_27013, sCellEventTrap_d_72=sCellEventTrap_d_72, mngmtAgentTrap_101=mngmtAgentTrap_101, mngmtAgentTrap_16020=mngmtAgentTrap_16020, sCellEventTrap_6_4=sCellEventTrap_6_4, shelfElementType=shelfElementType, shelfStatusTable=shelfStatusTable, sCellEventTrap_9_d=sCellEventTrap_9_d, sCellEventTrap_6_e=sCellEventTrap_6_e, mngmtAgentTrap_2067=mngmtAgentTrap_2067, mngmtAgentTrap_12002=mngmtAgentTrap_12002, mngmtAgentTrap_37=mngmtAgentTrap_37, mngmtAgentTrap_16019=mngmtAgentTrap_16019, mngmtAgentTrap_17007=mngmtAgentTrap_17007, mngmtAgentTrap_4040=mngmtAgentTrap_4040, mngmtAgentTrap_86=mngmtAgentTrap_86, sCellEventTrap_3_1=sCellEventTrap_3_1, sCellEventTrap_4_2=sCellEventTrap_4_2, mngmtAgentTrap_4=mngmtAgentTrap_4, mngmtAgentTrap_6004=mngmtAgentTrap_6004, mngmtAgentTrap_3083=mngmtAgentTrap_3083, mngmtAgentTrap_8011=mngmtAgentTrap_8011, mngmtAgentTrap_25009=mngmtAgentTrap_25009, mngmtAgentTrap_8040=mngmtAgentTrap_8040, mngmtAgentTrap_20=mngmtAgentTrap_20, mngmtAgentTrap_13018=mngmtAgentTrap_13018, mngmtAgentTrap_80=mngmtAgentTrap_80, mngmtAgentTrap_6006=mngmtAgentTrap_6006, sCellEventTrap_6_3b=sCellEventTrap_6_3b, mngmtAgentTrap_97=mngmtAgentTrap_97, mngmtAgentTrap_3007=mngmtAgentTrap_3007, mngmtAgentTrap_9003=mngmtAgentTrap_9003, mngmtAgentTrap_18041=mngmtAgentTrap_18041, mngmtAgentTrap_20001=mngmtAgentTrap_20001, mngmtAgentTrap_16010=mngmtAgentTrap_16010, sCellEventTrap_7_7=sCellEventTrap_7_7, mngmtAgentTrap_69=mngmtAgentTrap_69, mngmtAgentTrap_25007=mngmtAgentTrap_25007, sCellEventTrap_6_35=sCellEventTrap_6_35, mngmtAgentTrap_3059=mngmtAgentTrap_3059, sCellEventTrap_9_78=sCellEventTrap_9_78, mngmtAgentTrap_2099=mngmtAgentTrap_2099, sCellEventTrap_7_5=sCellEventTrap_7_5, mngmtAgentTrap_1005=mngmtAgentTrap_1005, mngmtAgentTrap_11=mngmtAgentTrap_11, mngmtAgentTrap_3022=mngmtAgentTrap_3022, mngmtAgentTrap_32=mngmtAgentTrap_32, mngmtAgentTrap_3004=mngmtAgentTrap_3004, mngmtAgentTrap_8027=mngmtAgentTrap_8027, mngmtAgentTrap_65=mngmtAgentTrap_65, mngmtAgentTrap_2061=mngmtAgentTrap_2061, mngmtAgentTrap_20004=mngmtAgentTrap_20004, sCellEventTrap_d_6f=sCellEventTrap_d_6f, mngmtAgentTrap_16034=mngmtAgentTrap_16034, mngmtAgentTrap_18059=mngmtAgentTrap_18059, mngmtAgentTrap_3064=mngmtAgentTrap_3064, mngmtAgentTrap_9034=mngmtAgentTrap_9034, mngmtAgentTrap_8086=mngmtAgentTrap_8086, sCellEventTrap_9_6d=sCellEventTrap_9_6d, mngmtAgentTrap_27037=mngmtAgentTrap_27037, mngmtAgentTrap_41=mngmtAgentTrap_41, mngmtAgentTrap_18007=mngmtAgentTrap_18007, sCellEventTrap_6_2=sCellEventTrap_6_2, sCellEventTrap_9_d5=sCellEventTrap_9_d5, sCellEventTrap_d_5b=sCellEventTrap_d_5b, mngmtAgentTrap_2058=mngmtAgentTrap_2058, mngmtAgentTrap_2088=mngmtAgentTrap_2088, mngmtAgentTrap_5002=mngmtAgentTrap_5002, mngmtAgentTrap_4012=mngmtAgentTrap_4012, mngmtAgentTrap_27025=mngmtAgentTrap_27025, mngmtAgentTrap_8085=mngmtAgentTrap_8085, mngmtAgentTrap_3068=mngmtAgentTrap_3068, mngmtAgentTrap_5003=mngmtAgentTrap_5003, mngmtAgentTrap_27038=mngmtAgentTrap_27038, mngmtAgentTrap_21=mngmtAgentTrap_21, mngmtAgentTrap_2047=mngmtAgentTrap_2047, sCellEventTrap_83_0=sCellEventTrap_83_0, agentEventTimeDate=agentEventTimeDate, sCellEventTrap_6_13=sCellEventTrap_6_13, mngmtAgentTrap_3019=mngmtAgentTrap_3019, mngmtAgentTrap_16031=mngmtAgentTrap_16031, mngmtAgentTrap_75=mngmtAgentTrap_75, mngmtAgentTrap_25013=mngmtAgentTrap_25013, mngmtAgentTrap_18003=mngmtAgentTrap_18003, mngmtAgentTrap_3060=mngmtAgentTrap_3060, mngmtAgentTrap_27032=mngmtAgentTrap_27032, mngmtAgentTrap_107=mngmtAgentTrap_107, sCellEventTrap_9_33=sCellEventTrap_9_33, sCellEventTrap_9_e=sCellEventTrap_9_e, mngmtAgentTrap_21010=mngmtAgentTrap_21010, mngmtAgentTrap_127=mngmtAgentTrap_127, mngmtAgentTrap_12001=mngmtAgentTrap_12001, mngmtAgentTrap_16036=mngmtAgentTrap_16036, mngmtAgentTrap_6031=mngmtAgentTrap_6031, mngmtAgentTrap_10022=mngmtAgentTrap_10022, sCellEventTrap_6_7=sCellEventTrap_6_7, mngmtAgentTrap_4043=mngmtAgentTrap_4043, sCellEventTrap_9_1f=sCellEventTrap_9_1f, mngmtAgentTrap_3070=mngmtAgentTrap_3070, mngmtAgentTrap_9033=mngmtAgentTrap_9033, mngmtAgentTrap_10020=mngmtAgentTrap_10020, mngmtAgentTrap_27029=mngmtAgentTrap_27029, sCellEventTrap_9_3d=sCellEventTrap_9_3d, sCellEventTrap_9_66=sCellEventTrap_9_66, hostStatusTable=hostStatusTable, mngmtAgentTrap_102=mngmtAgentTrap_102, mngmtAgentTrap_13019=mngmtAgentTrap_13019, mngmtAgentTrap_3047=mngmtAgentTrap_3047, mngmtAgentTrap_3094=mngmtAgentTrap_3094, sCellEventTrap_d_5f=sCellEventTrap_d_5f, mngmtAgentTrap_27021=mngmtAgentTrap_27021, mngmtAgentTrap_1001=mngmtAgentTrap_1001, compaq=compaq, mngmtAgentTrap_3029=mngmtAgentTrap_3029, mngmtAgentTrap_5007=mngmtAgentTrap_5007, sCellEventTrap_3_2=sCellEventTrap_3_2, sCellEventTrap_9_4=sCellEventTrap_9_4, mngmtAgentTrap_15003=mngmtAgentTrap_15003, mngmtAgentTrap_6032=mngmtAgentTrap_6032, mngmtAgentTrap_18034=mngmtAgentTrap_18034, mngmtAgentTrap_18028=mngmtAgentTrap_18028, mngmtAgentTrap_26010=mngmtAgentTrap_26010, mngmtAgentTrap_5004=mngmtAgentTrap_5004, sCellEventTrap_6_20=sCellEventTrap_6_20, mngmtAgentTrap_50=mngmtAgentTrap_50, mngmtAgentTrap_2098=mngmtAgentTrap_2098, mngmtAgentTrap_4007=mngmtAgentTrap_4007, mngmtAgentTrap_9023=mngmtAgentTrap_9023, hostUUID=hostUUID, mngmtAgentTrap_10040=mngmtAgentTrap_10040, mngmtAgentTrap_25002=mngmtAgentTrap_25002, mngmtAgentTrap_18065=mngmtAgentTrap_18065, sCellEventTrap_9_cf=sCellEventTrap_9_cf, sCellEventTrap_9_74=sCellEventTrap_9_74, mngmtAgentTrap_46=mngmtAgentTrap_46, mngmtAgentTrap_8063=mngmtAgentTrap_8063, sCellEventTrap_4_7=sCellEventTrap_4_7, sCellEventTrap_6_3=sCellEventTrap_6_3, sCellEventTrap_6_18=sCellEventTrap_6_18, mngmtAgentTrap_36=mngmtAgentTrap_36, mngmtAgentTrap_3015=mngmtAgentTrap_3015, mngmtAgentTrap_4048=mngmtAgentTrap_4048, sCellEventTrap_9_17=sCellEventTrap_9_17, mngmtAgentTrap_16039=mngmtAgentTrap_16039, mngmtAgentTrap_2062=mngmtAgentTrap_2062, mngmtAgentTrap_59=mngmtAgentTrap_59, mngmtAgentTrap_4023=mngmtAgentTrap_4023, mngmtAgentTrap_10027=mngmtAgentTrap_10027, sCellEventTrap_9_46=sCellEventTrap_9_46, sCellEventTrap_9_ce=sCellEventTrap_9_ce, mngmtAgentTrap_27019=mngmtAgentTrap_27019, mngmtAgentTrap_27026=mngmtAgentTrap_27026, mngmtAgentTrap_87=mngmtAgentTrap_87, sCellEventTrap_6_a=sCellEventTrap_6_a, sCellEventTrap_6_37=sCellEventTrap_6_37, sCellEventTrap_c_12=sCellEventTrap_c_12, hostEntryIndex=hostEntryIndex, sCellEventTrap_9_26=sCellEventTrap_9_26, mngmtAgentTrap_18045=mngmtAgentTrap_18045, mngmtAgentTrap_4059=mngmtAgentTrap_4059, mngmtAgentTrap_15005=mngmtAgentTrap_15005, sCellEventTrap_6_3c=sCellEventTrap_6_3c, nscStatusTable=nscStatusTable, mngmtAgentTrap_124=mngmtAgentTrap_124, sCellEventTrap_6_c=sCellEventTrap_6_c, sCellEventTrap_9_8=sCellEventTrap_9_8, mngmtAgentTrap_18039=mngmtAgentTrap_18039, sCellEventTrap_9_d1=sCellEventTrap_9_d1, mngmtAgentTrap_9018=mngmtAgentTrap_9018, sCellEventTrap_c_0=sCellEventTrap_c_0, mngmtAgentTrap_8007=mngmtAgentTrap_8007, mngmtAgentTrap_21017=mngmtAgentTrap_21017, sCellEventTrap_6_3e=sCellEventTrap_6_3e, sCellEventTrap_9_1c=sCellEventTrap_9_1c, mngmtAgentTrap_5015=mngmtAgentTrap_5015, mngmtAgentTrap_20016=mngmtAgentTrap_20016, mngmtAgentTrap_20017=mngmtAgentTrap_20017, scellTotal=scellTotal, mngmtAgentTrap_84=mngmtAgentTrap_84, mngmtAgentTrap_8075=mngmtAgentTrap_8075, mngmtAgentTrap_8031=mngmtAgentTrap_8031, mngmtAgentTrap_10036=mngmtAgentTrap_10036, sCellEventTrap_42_5=sCellEventTrap_42_5, mngmtAgentTrap_13012=mngmtAgentTrap_13012, mngmtAgentTrap_6002=mngmtAgentTrap_6002, sCellEventTrap_d_4b=sCellEventTrap_d_4b, mngmtAgentTrap_21002=mngmtAgentTrap_21002, mngmtAgentTrap_27017=mngmtAgentTrap_27017, mngmtAgentTrap_22001=mngmtAgentTrap_22001, mngmtAgentTrap_27040=mngmtAgentTrap_27040)
mibBuilder.exportSymbols("CPQHSV110V3-MIB", sCellEventTrap_9_3e=sCellEventTrap_9_3e, mngmtAgentTrap_18075=mngmtAgentTrap_18075, cpqHSV=cpqHSV, sCellEventTrap_6_38=sCellEventTrap_6_38, sCellEventTrap_42_4=sCellEventTrap_42_4, mngmtAgentTrap_16018=mngmtAgentTrap_16018, mngmtAgentTrap_13=mngmtAgentTrap_13, mngmtAgentTrap_20013=mngmtAgentTrap_20013, mngmtAgentTrap_2001=mngmtAgentTrap_2001, mngmtAgentTrap_8029=mngmtAgentTrap_8029, sCellEventTrap_9_d4=sCellEventTrap_9_d4, sCellEventTrap_6_25=sCellEventTrap_6_25, sCellEventTrap_6_15=sCellEventTrap_6_15, mngmtAgentTrap_4047=mngmtAgentTrap_4047, shelfEntry=shelfEntry, mngmtAgentTrap_4028=mngmtAgentTrap_4028, mngmtAgentTrap_9016=mngmtAgentTrap_9016, sCellEventTrap_d_4=sCellEventTrap_d_4, sCellEventTrap_83_3=sCellEventTrap_83_3, mngmtAgentTrap_8060=mngmtAgentTrap_8060, mngmtAgentTrap_47=mngmtAgentTrap_47, mngmtAgentTrap_2059=mngmtAgentTrap_2059, mngmtAgentTrap_21003=mngmtAgentTrap_21003, mngmtAgentTrap_27009=mngmtAgentTrap_27009, scellCAC=scellCAC, mngmtAgentTrap_9036=mngmtAgentTrap_9036, mngmtAgentTrap_8005=mngmtAgentTrap_8005, sCellEventTrap_9_21=sCellEventTrap_9_21, mngmtAgentTrap_3084=mngmtAgentTrap_3084, mngmtAgentTrap_3039=mngmtAgentTrap_3039, mngmtAgentTrap_2004=mngmtAgentTrap_2004, mngmtAgentTrap_6020=mngmtAgentTrap_6020, mngmtAgentTrap_8042=mngmtAgentTrap_8042, sCellEventTrap_d_d8=sCellEventTrap_d_d8, mngmtAgentTrap_20018=mngmtAgentTrap_20018, mngmtAgentTrap_27003=mngmtAgentTrap_27003, mngmtAgentTrap_27033=mngmtAgentTrap_27033, mngmtAgentTrap_5017=mngmtAgentTrap_5017, sCellEventTrap_c_f=sCellEventTrap_c_f, mngmtAgentTrap_20002=mngmtAgentTrap_20002, sCellEventTrap_4_e=sCellEventTrap_4_e, sCellEventTrap_9_15=sCellEventTrap_9_15, mngmtAgentTrap_3058=mngmtAgentTrap_3058, mngmtAgentTrap_2060=mngmtAgentTrap_2060, mngmtAgentTrap_3056=mngmtAgentTrap_3056, mngmtAgentTrap_8083=mngmtAgentTrap_8083, mngmtAgentTrap_17003=mngmtAgentTrap_17003, mngmtAgentTrap_92=mngmtAgentTrap_92, mngmtAgentTrap_98=mngmtAgentTrap_98, mngmtAgentTrap_23003=mngmtAgentTrap_23003, mngmtAgentTrap_25015=mngmtAgentTrap_25015, scellStatus=scellStatus, mngmtAgentTrap_3054=mngmtAgentTrap_3054, mngmtAgentTrap_4029=mngmtAgentTrap_4029, sCellEventTrap_9_3=sCellEventTrap_9_3, mngmtAgentTrap_11004=mngmtAgentTrap_11004, sCellEventTrap_6_0=sCellEventTrap_6_0, mngmtAgentTrap_2076=mngmtAgentTrap_2076, sCellEventTrap_9_c9=sCellEventTrap_9_c9, mngmtAgentTrap_1000=mngmtAgentTrap_1000, shelfElementNum=shelfElementNum, mngmtAgentTrap_29=mngmtAgentTrap_29, mngmtAgentTrap_8012=mngmtAgentTrap_8012, mngmtAgentTrap_27043=mngmtAgentTrap_27043, mngmtAgentTrap_114=mngmtAgentTrap_114, mngmtAgentTrap_2049=mngmtAgentTrap_2049, mngmtAgentTrap_54=mngmtAgentTrap_54, mngmtAgentTrap_27015=mngmtAgentTrap_27015, sCellEventTrap_c_15=sCellEventTrap_c_15, sCellEventTrap_9_31=sCellEventTrap_9_31, mngmtAgentTrap_22=mngmtAgentTrap_22, mngmtAgentTrap_27001=mngmtAgentTrap_27001, mngmtAgentTrap_10006=mngmtAgentTrap_10006, mngmtAgentTrap_14003=mngmtAgentTrap_14003, mngmtAgentTrap_18024=mngmtAgentTrap_18024, mngmtAgentTrap_49=mngmtAgentTrap_49, nscEntry=nscEntry, sCellEventTrap_9_5=sCellEventTrap_9_5, sCellEventTrap_42_0=sCellEventTrap_42_0, mngmtAgentTrap_72=mngmtAgentTrap_72, mngmtAgentTrap_10001=mngmtAgentTrap_10001, mngmtAgentTrap_18009=mngmtAgentTrap_18009, mngmtAgentTrap_2064=mngmtAgentTrap_2064, mngmtAgentTrap_4033=mngmtAgentTrap_4033, mngmtAgentTrap_10039=mngmtAgentTrap_10039, mngmtAgentTrap_3035=mngmtAgentTrap_3035, mngmtAgentTrap_8002=mngmtAgentTrap_8002, mngmtAgentTrap_17016=mngmtAgentTrap_17016, sCellEventTrap_d_d9=sCellEventTrap_d_d9, sCellEventTrap_d_1=sCellEventTrap_d_1, mngmtAgentTrap_9004=mngmtAgentTrap_9004, mngmtAgentTrap_27030=mngmtAgentTrap_27030, scellNameDateTime=scellNameDateTime, mngmtAgentTrap_3078=mngmtAgentTrap_3078, mngmtAgentTrap_18006=mngmtAgentTrap_18006, sCellEventTrap_9_12=sCellEventTrap_9_12, mngmtAgentTrap_8077=mngmtAgentTrap_8077, sCellEventTrap_9_cb=sCellEventTrap_9_cb, sCellEventTrap_4_9=sCellEventTrap_4_9, mngmtAgentTrap_129=mngmtAgentTrap_129, mngmtAgentTrap_2052=mngmtAgentTrap_2052, mngmtAgentTrap_4054=mngmtAgentTrap_4054, mngmtAgentTrap_10021=mngmtAgentTrap_10021, mngmtAgentTrap_16040=mngmtAgentTrap_16040, mngmtAgentTrap_3075=mngmtAgentTrap_3075, mngmtAgentTrap_96=mngmtAgentTrap_96, mngmtAgentTrap_18050=mngmtAgentTrap_18050, mngmtAgentTrap_25008=mngmtAgentTrap_25008, mngmtAgentTrap_3001=mngmtAgentTrap_3001, mngmtAgentTrap_18051=mngmtAgentTrap_18051, sCellEventTrap_9_d2=sCellEventTrap_9_d2, mngmtAgentTrap_8055=mngmtAgentTrap_8055, sCellEventTrap_9_77=sCellEventTrap_9_77, mngmtAgentTrap_8073=mngmtAgentTrap_8073, sCellEventTrap_c_6=sCellEventTrap_c_6, shelfEntryIndex=shelfEntryIndex, scell=scell, sCellEventTrap_9_70=sCellEventTrap_9_70, mngmtAgentTrap_91=mngmtAgentTrap_91, mngmtAgentTrap_5013=mngmtAgentTrap_5013, mngmtAgentTrap_10026=mngmtAgentTrap_10026, mngmtAgentTrap_10044=mngmtAgentTrap_10044, shelfStatus=shelfStatus, mngmtAgentTrap_14012=mngmtAgentTrap_14012, mngmtAgentTrap_64=mngmtAgentTrap_64, mngmtAgentTrap_67=mngmtAgentTrap_67, mngmtAgentTrap_3038=mngmtAgentTrap_3038, mngmtAgentTrap_4018=mngmtAgentTrap_4018, mngmtAgentTrap_20022=mngmtAgentTrap_20022, mngmtAgentTrap_26012=mngmtAgentTrap_26012, mngmtAgentTrap_27008=mngmtAgentTrap_27008, sCellEventTrap_4_1=sCellEventTrap_4_1, mngmtAgentTrap_12005=mngmtAgentTrap_12005, mngmtAgentTrap_2=mngmtAgentTrap_2, mngmtAgentTrap_112=mngmtAgentTrap_112, mngmtAgentTrap_8008=mngmtAgentTrap_8008)
| (integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, value_size_constraint, constraints_union, constraints_intersection, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'SingleValueConstraint')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(iso, unsigned32, notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, ip_address, mib_identifier, object_identity, bits, module_identity, counter32, notification_type, integer32, counter64, time_ticks, enterprises) = mibBuilder.importSymbols('SNMPv2-SMI', 'iso', 'Unsigned32', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'IpAddress', 'MibIdentifier', 'ObjectIdentity', 'Bits', 'ModuleIdentity', 'Counter32', 'NotificationType', 'Integer32', 'Counter64', 'TimeTicks', 'enterprises')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
compaq = mib_identifier((1, 3, 6, 1, 4, 1, 232))
cpq_element_manager = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136))
cpq_hsv = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1))
cpq_hsv_agent = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 1))
cpq_hsv_server = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 2))
hsv_object = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3))
ma_hsv_mib_rev = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 4))
scell = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1))
agent = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 2))
host = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3))
nsc = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4))
shelf = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8))
ag_manufacturer = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agManufacturer.setStatus('mandatory')
ag_maj_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agMajVersion.setStatus('mandatory')
ag_min_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agMinVersion.setStatus('mandatory')
ag_host_name = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agHostName.setStatus('mandatory')
ag_enterprise = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 5), object_identifier()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agEnterprise.setStatus('mandatory')
ag_description = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agDescription.setStatus('mandatory')
ag_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7))
if mibBuilder.loadTexts:
agStatusTable.setStatus('mandatory')
agent_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1)).setIndexNames((0, 'CPQHSV110V3-MIB', 'agentEntryIndex'))
if mibBuilder.loadTexts:
agentEntry.setStatus('mandatory')
agent_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEntryIndex.setStatus('mandatory')
agent_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('other', 1), ('ok', 2), ('degraded', 3), ('failed', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentStatus.setStatus('mandatory')
agent_event_code = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEventCode.setStatus('mandatory')
agent_event_level = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEventLevel.setStatus('mandatory')
agent_event_time_date = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEventTimeDate.setStatus('mandatory')
agent_event_description = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEventDescription.setStatus('mandatory')
srv_cpu = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvCPU.setStatus('mandatory')
srv_computer_type = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvComputerType.setStatus('mandatory')
srv_model = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvModel.setStatus('mandatory')
srv_sub_model = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvSubModel.setStatus('mandatory')
srv_bios_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvBiosVersion.setStatus('mandatory')
srv_os = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvOS.setStatus('mandatory')
srv_os_maj_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvOSMajVersion.setStatus('mandatory')
srv_os_min_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvOSMinVersion.setStatus('mandatory')
ma_hsv_mib_rev_major = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
maHSVMibRevMajor.setStatus('mandatory')
ma_hsv_mib_rev_minor = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 4, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
maHSVMibRevMinor.setStatus('mandatory')
scell_total = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellTotal.setStatus('mandatory')
scell_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2))
if mibBuilder.loadTexts:
scellStatusTable.setStatus('mandatory')
scell_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1)).setIndexNames((0, 'CPQHSV110V3-MIB', 'scellEntryIndex'))
if mibBuilder.loadTexts:
scellEntry.setStatus('mandatory')
scell_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEntryIndex.setStatus('mandatory')
scell_name = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellName.setStatus('mandatory')
scell_uuid = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellUUID.setStatus('mandatory')
scell_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('informational', 1), ('minor', 2), ('major', 3), ('failed', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellStatus.setStatus('mandatory')
scell_event_description = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEventDescription.setStatus('mandatory')
scell_event_time_date = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEventTimeDate.setStatus('mandatory')
scell_event_code = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEventCode.setStatus('mandatory')
scell_sw_component = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellSWComponent.setStatus('mandatory')
scell_e_code = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellECode.setStatus('mandatory')
scell_cac = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellCAC.setStatus('mandatory')
scell_eip = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEIP.setStatus('mandatory')
scell_name_date_time = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 12), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellNameDateTime.setStatus('mandatory')
host_total = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostTotal.setStatus('mandatory')
host_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2))
if mibBuilder.loadTexts:
hostStatusTable.setStatus('mandatory')
host_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1)).setIndexNames((0, 'CPQHSV110V3-MIB', 'hostEntryIndex'))
if mibBuilder.loadTexts:
hostEntry.setStatus('mandatory')
host_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostEntryIndex.setStatus('mandatory')
host_name = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostName.setStatus('mandatory')
host_uuid = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostUUID.setStatus('mandatory')
host_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('informational', 0), ('minor', 1), ('major', 2), ('critical', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostStatus.setStatus('mandatory')
nsc_total = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscTotal.setStatus('mandatory')
nsc_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2))
if mibBuilder.loadTexts:
nscStatusTable.setStatus('mandatory')
nsc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1)).setIndexNames((0, 'CPQHSV110V3-MIB', 'nscEntryIndex'))
if mibBuilder.loadTexts:
nscEntry.setStatus('mandatory')
nsc_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscEntryIndex.setStatus('mandatory')
nsc_name = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscName.setStatus('mandatory')
nsc_uuid = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscUUID.setStatus('mandatory')
nsc_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('informational', 0), ('minor', 1), ('major', 2), ('critical', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscStatus.setStatus('mandatory')
shelf_total = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfTotal.setStatus('mandatory')
shelf_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2))
if mibBuilder.loadTexts:
shelfStatusTable.setStatus('mandatory')
shelf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1)).setIndexNames((0, 'CPQHSV110V3-MIB', 'shelfEntryIndex'))
if mibBuilder.loadTexts:
shelfEntry.setStatus('mandatory')
shelf_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfEntryIndex.setStatus('mandatory')
shelf_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('other', 1), ('ok', 2), ('degraded', 3), ('failed', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfStatus.setStatus('mandatory')
shelf_id = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfId.setStatus('mandatory')
shelf_element_type = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfElementType.setStatus('mandatory')
shelf_element_num = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfElementNum.setStatus('mandatory')
shelf_error_code = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfErrorCode.setStatus('mandatory')
emu_event_trap_informative = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'shelfId'), ('CPQHSV110V3-MIB', 'shelfElementType'), ('CPQHSV110V3-MIB', 'shelfElementNum'), ('CPQHSV110V3-MIB', 'shelfErrorCode'))
emu_event_trap_noncritical = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'shelfId'), ('CPQHSV110V3-MIB', 'shelfElementType'), ('CPQHSV110V3-MIB', 'shelfElementNum'), ('CPQHSV110V3-MIB', 'shelfErrorCode'))
emu_event_trap_critical = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'shelfId'), ('CPQHSV110V3-MIB', 'shelfElementType'), ('CPQHSV110V3-MIB', 'shelfElementNum'), ('CPQHSV110V3-MIB', 'shelfErrorCode'))
emu_event_trap_unrecoverable = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'shelfId'), ('CPQHSV110V3-MIB', 'shelfElementType'), ('CPQHSV110V3-MIB', 'shelfElementNum'), ('CPQHSV110V3-MIB', 'shelfErrorCode'))
s_cell_event_trap_1_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600256)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_1_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600257)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600768)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600769)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600770)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600771)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600772)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600773)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600774)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600775)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600776)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601024)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601025)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601026)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601027)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601028)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601029)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601030)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601031)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601032)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601033)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601034)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601035)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601036)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601037)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601038)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601039)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_10 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601040)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_11 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601041)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601536)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601537)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601538)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601539)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601540)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601541)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601543)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601544)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601545)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601546)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601547)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601548)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601549)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601550)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601551)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_10 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601552)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_12 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601554)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_13 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601555)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_14 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601556)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_15 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601557)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_16 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601558)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_18 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601560)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_19 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601561)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_1a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601562)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_1b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601563)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_1c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601564)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_1d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601565)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_1e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601566)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_1f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601567)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_20 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601568)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_21 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601569)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_23 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601571)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_24 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601572)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_25 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601573)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_26 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601574)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_27 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601575)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_28 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601576)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_29 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601577)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_2a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601578)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_2b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601579)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_2c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601580)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_2d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601581)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_2e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601582)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_30 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601584)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_31 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601585)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_32 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601586)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_33 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601587)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_34 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601588)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_35 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601589)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_36 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601590)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_37 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601591)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_38 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601592)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_39 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601593)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_3a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601594)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_3b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601595)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_3c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601596)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_3d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601597)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_3e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601598)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601792)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601793)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601794)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601795)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601796)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601797)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601798)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601799)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601800)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602305)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602306)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602307)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602308)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602309)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602310)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602311)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602312)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602313)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602314)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602316)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602317)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602318)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602319)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_11 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602321)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_12 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602322)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_13 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602323)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_14 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602324)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_15 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602325)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_16 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602326)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_17 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602327)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_18 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602328)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_19 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602329)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_1a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602330)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_1b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602331)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_1c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602332)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_1d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602333)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_1e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602334)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_1f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602335)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_20 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602336)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_21 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602337)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_22 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602338)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_23 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602339)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_24 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602340)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_25 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602341)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_26 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602342)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_27 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602343)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_28 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602344)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_29 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602345)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_2a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602346)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_2b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602347)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_2c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602348)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_2d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602349)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_2e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602350)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_2f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602351)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_30 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602352)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_31 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602353)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_32 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602354)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_33 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602355)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_34 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602356)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_35 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602357)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_36 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602358)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_37 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602359)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_38 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602360)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_39 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602361)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_3a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602362)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_3b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602363)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_3c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602364)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_3d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602365)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_3e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602366)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_3f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602367)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_40 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602368)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_41 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602369)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_43 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602371)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_44 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602372)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_45 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602373)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_46 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602374)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_47 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602375)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_48 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602376)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_49 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602377)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_65 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602405)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_66 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602406)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_67 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602407)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_68 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602408)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_69 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602409)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_6a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602410)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_6b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602411)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_6c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602412)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_6d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602413)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_6e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602414)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_70 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602416)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_71 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602417)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_72 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602418)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_73 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602419)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_74 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602420)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_75 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602421)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_76 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602422)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_77 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602423)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_78 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602424)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_79 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602425)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_7a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602426)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_c8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602504)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_c9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602505)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_ca = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602506)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_cb = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602507)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_cc = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602508)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_cd = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602509)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_ce = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602510)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_cf = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602511)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602512)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602513)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602514)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602515)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602516)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602517)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602518)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602519)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_b_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602816)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603072)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603073)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603074)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603075)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603076)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603077)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603078)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603079)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603080)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603081)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603082)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603084)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603087)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_10 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603088)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_11 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603089)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_12 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603090)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_15 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603093)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603328)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603329)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603330)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603331)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603332)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_33 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603379)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_34 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603380)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_35 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603381)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_47 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603399)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_4b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603403)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_4c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603404)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_5b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603419)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_5f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603423)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_6f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603439)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_71 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603441)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_72 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603442)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_7e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603454)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_7f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603455)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_82 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603458)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_83 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603459)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_85 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603461)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_8d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603469)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_a1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603489)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_b5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603509)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_d8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603544)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_d9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603545)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_dd = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603549)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_de = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603550)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_ec = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603564)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_f0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603568)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_42_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616896)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_42_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616897)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_42_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616899)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_42_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616900)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_42_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616901)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_83_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633536)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_83_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633537)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_83_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633538)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_83_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633539)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_83_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633540)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_83_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633541)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_83_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633542)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
mngmt_agent_trap_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_11 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_12 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_19 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_22 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_23 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_24 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_28 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_29 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_30 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_31 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_32 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_33 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_34 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_35 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_36 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_37 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_38 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_39 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000039)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_40 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_41 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000041)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_42 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000042)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_43 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000043)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_44 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000044)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_45 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000045)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_46 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000046)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_47 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000047)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_48 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000048)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_49 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000049)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_50 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000050)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_51 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000051)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_52 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000052)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_53 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000053)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_54 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000054)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_55 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000055)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_56 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000056)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_57 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000057)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_58 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000058)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_59 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000059)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_60 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000060)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_61 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000061)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_62 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000062)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_63 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000063)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_64 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000064)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_65 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000065)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_66 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000066)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_67 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000067)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_68 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000068)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_69 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000069)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_70 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000070)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_71 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000071)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_72 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000072)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_73 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000073)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_74 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000074)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_75 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000075)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_76 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000076)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_77 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000077)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_78 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000078)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_79 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000079)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_80 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000080)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_81 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000081)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_82 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000082)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_83 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000083)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_84 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000084)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_85 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000085)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_86 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000086)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_87 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000087)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_88 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000088)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_89 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000089)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_90 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000090)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_91 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000091)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_92 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000092)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_93 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000093)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_94 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000094)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_95 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000095)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_96 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000096)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_97 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000097)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_98 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000098)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_99 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000099)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_100 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000100)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_101 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000101)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_102 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000102)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_103 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000103)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_104 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000104)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_105 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000105)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_106 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000106)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_107 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000107)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_108 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000108)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_109 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000109)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_110 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000110)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_111 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000111)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_112 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000112)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_113 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000113)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_114 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000114)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_115 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000115)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_116 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000116)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_117 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000117)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_118 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000118)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_119 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000119)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_120 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000120)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_121 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000121)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_122 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000122)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_123 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000123)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_124 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000124)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_125 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000125)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_126 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000126)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_127 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000127)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_128 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000128)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_129 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000129)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_130 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000130)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_131 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000131)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_132 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000132)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_133 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000133)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1000 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001000)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002041)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002042)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002047)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002048)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002049)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002050)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002051)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2052 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002052)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2057 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002057)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2058 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002058)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002059)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2060 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002060)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2061 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002061)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2062 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002062)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2063 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002063)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2064 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002064)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2065 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002065)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2066 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002066)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2067 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002067)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2068 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002068)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2069 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002069)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2070 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002070)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2071 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002071)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2072 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002072)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2073 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002073)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2074 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002074)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2075 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002075)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2076 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002076)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2077 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002077)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2078 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002078)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2079 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002079)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2080 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002080)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2081 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002081)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2082 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002082)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2083 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002083)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2084 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002084)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2085 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002085)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2086 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002086)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2087 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002087)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2088 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002088)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2089 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002089)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2090 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002090)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2091 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002091)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2092 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002092)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2093 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002093)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2095 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002095)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2096 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002096)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2097 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002097)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2098 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002098)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2099 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002099)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2100 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002100)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2102 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002102)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2103 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002103)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003039)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3044 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003044)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3045 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003045)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3046 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003046)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003047)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003048)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003049)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003050)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003051)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3053 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003053)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3054 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003054)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3055 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003055)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3056 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003056)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3057 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003057)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3058 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003058)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003059)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3060 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003060)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3061 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003061)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3062 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003062)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3063 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003063)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3064 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003064)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3065 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003065)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3066 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003066)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3067 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003067)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3068 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003068)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3069 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003069)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3070 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003070)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3071 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003071)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3072 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003072)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3075 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003075)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3076 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003076)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3077 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003077)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3078 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003078)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3079 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003079)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3080 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003080)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3081 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003081)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3083 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003083)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3084 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003084)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3086 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003086)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3090 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003090)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3091 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003091)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3092 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003092)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3094 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003094)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3095 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003095)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4000 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004000)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004041)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004042)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4043 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004043)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004047)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004048)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004049)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004050)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004051)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4052 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004052)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4053 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004053)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4054 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004054)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4058 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004058)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004059)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008039)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008041)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008042)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8043 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008043)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8044 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008044)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8045 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008045)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8046 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008046)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008047)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008048)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008049)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008050)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008051)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8052 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008052)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8053 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008053)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8054 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008054)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8055 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008055)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8056 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008056)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8057 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008057)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8058 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008058)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008059)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8060 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008060)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8061 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008061)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8062 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008062)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8063 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008063)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8064 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008064)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8065 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008065)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8066 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008066)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8067 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008067)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8068 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008068)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8069 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008069)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8070 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008070)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8071 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008071)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8073 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008073)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8074 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008074)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8075 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008075)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8076 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008076)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8077 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008077)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8078 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008078)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8079 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008079)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8080 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008080)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8081 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008081)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8082 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008082)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8083 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008083)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8084 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008084)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8085 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008085)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8086 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008086)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8087 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008087)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8088 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008088)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8089 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008089)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8090 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008090)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010039)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010041)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010042)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10043 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010043)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10044 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010044)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_11001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136011001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_11002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136011002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_11003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136011003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_11004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136011004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_12001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_12002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_12003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_12004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_12005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_12008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016039)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018039)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018041)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018042)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18045 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018045)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018047)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018048)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018049)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018050)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018051)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18052 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018052)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018059)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18060 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018060)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18063 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018063)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18065 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018065)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18066 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018066)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18067 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018067)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18068 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018068)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18070 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018070)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18071 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018071)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18073 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018073)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18074 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018074)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18075 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018075)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18076 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018076)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18080 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018080)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18081 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018081)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_22001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136022001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_22002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136022002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_23002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136023002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_23003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136023003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_24001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136024001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_24002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136024002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_24003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136024003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_24004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136024004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027039)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027041)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027042)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27043 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027043)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27044 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027044)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27045 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027045)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27046 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027046)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027047)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027048)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027049)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mibBuilder.exportSymbols('CPQHSV110V3-MIB', mngmtAgentTrap_103=mngmtAgentTrap_103, mngmtAgentTrap_3021=mngmtAgentTrap_3021, mngmtAgentTrap_8001=mngmtAgentTrap_8001, sCellEventTrap_9_6=sCellEventTrap_9_6, scellEventDescription=scellEventDescription, mngmtAgentTrap_3072=mngmtAgentTrap_3072, sCellEventTrap_6_2c=sCellEventTrap_6_2c, mngmtAgentTrap_2072=mngmtAgentTrap_2072, mngmtAgentTrap_8078=mngmtAgentTrap_8078, mngmtAgentTrap_16001=mngmtAgentTrap_16001, mngmtAgentTrap_2008=mngmtAgentTrap_2008, mngmtAgentTrap_83=mngmtAgentTrap_83, sCellEventTrap_6_2d=sCellEventTrap_6_2d, sCellEventTrap_9_72=sCellEventTrap_9_72, mngmtAgentTrap_8044=mngmtAgentTrap_8044, mngmtAgentTrap_18038=mngmtAgentTrap_18038, sCellEventTrap_d_ec=sCellEventTrap_d_ec, mngmtAgentTrap_27020=mngmtAgentTrap_27020, mngmtAgentTrap_4000=mngmtAgentTrap_4000, mngmtAgentTrap_26009=mngmtAgentTrap_26009, mngmtAgentTrap_27042=mngmtAgentTrap_27042, mngmtAgentTrap_4050=mngmtAgentTrap_4050, mngmtAgentTrap_27046=mngmtAgentTrap_27046, mngmtAgentTrap_9027=mngmtAgentTrap_9027, mngmtAgentTrap_27048=mngmtAgentTrap_27048, mngmtAgentTrap_18025=mngmtAgentTrap_18025, mngmtAgentTrap_8013=mngmtAgentTrap_8013, mngmtAgentTrap_9035=mngmtAgentTrap_9035, mngmtAgentTrap_2007=mngmtAgentTrap_2007, mngmtAgentTrap_11003=mngmtAgentTrap_11003, mngmtAgentTrap_16037=mngmtAgentTrap_16037, mngmtAgentTrap_88=mngmtAgentTrap_88, mngmtAgentTrap_20019=mngmtAgentTrap_20019, mngmtAgentTrap_25005=mngmtAgentTrap_25005, sCellEventTrap_6_1e=sCellEventTrap_6_1e, sCellEventTrap_9_3f=sCellEventTrap_9_3f, maHSVMibRevMinor=maHSVMibRevMinor, mngmtAgentTrap_68=mngmtAgentTrap_68, sCellEventTrap_9_c=sCellEventTrap_9_c, mngmtAgentTrap_15=mngmtAgentTrap_15, sCellEventTrap_6_f=sCellEventTrap_6_f, mngmtAgentTrap_2079=mngmtAgentTrap_2079, mngmtAgentTrap_8030=mngmtAgentTrap_8030, mngmtAgentTrap_14017=mngmtAgentTrap_14017, mngmtAgentTrap_18048=mngmtAgentTrap_18048, sCellEventTrap_6_1=sCellEventTrap_6_1, mngmtAgentTrap_99=mngmtAgentTrap_99, mngmtAgentTrap_8054=mngmtAgentTrap_8054, mngmtAgentTrap_21009=mngmtAgentTrap_21009, mngmtAgentTrap_6016=mngmtAgentTrap_6016, mngmtAgentTrap_21014=mngmtAgentTrap_21014, mngmtAgentTrap_9025=mngmtAgentTrap_9025, mngmtAgentTrap_94=mngmtAgentTrap_94, mngmtAgentTrap_15007=mngmtAgentTrap_15007, sCellEventTrap_9_34=sCellEventTrap_9_34, mngmtAgentTrap_6023=mngmtAgentTrap_6023, sCellEventTrap_9_30=sCellEventTrap_9_30, mngmtAgentTrap_57=mngmtAgentTrap_57, sCellEventTrap_9_41=sCellEventTrap_9_41, mngmtAgentTrap_14005=mngmtAgentTrap_14005, sCellEventTrap_83_4=sCellEventTrap_83_4, mngmtAgentTrap_13017=mngmtAgentTrap_13017, sCellEventTrap_9_19=sCellEventTrap_9_19, mngmtAgentTrap_15002=mngmtAgentTrap_15002, nscName=nscName, mngmtAgentTrap_18005=mngmtAgentTrap_18005, mngmtAgentTrap_2033=mngmtAgentTrap_2033, agManufacturer=agManufacturer, mngmtAgentTrap_9013=mngmtAgentTrap_9013, mngmtAgentTrap_2010=mngmtAgentTrap_2010, sCellEventTrap_6_1a=sCellEventTrap_6_1a, mngmtAgentTrap_26007=mngmtAgentTrap_26007, mngmtAgentTrap_10031=mngmtAgentTrap_10031, mngmtAgentTrap_130=mngmtAgentTrap_130, mngmtAgentTrap_3044=mngmtAgentTrap_3044, mngmtAgentTrap_8064=mngmtAgentTrap_8064, mngmtAgentTrap_20011=mngmtAgentTrap_20011, sCellEventTrap_6_19=sCellEventTrap_6_19, mngmtAgentTrap_8071=mngmtAgentTrap_8071, agMajVersion=agMajVersion, sCellEventTrap_4_4=sCellEventTrap_4_4, mngmtAgentTrap_17012=mngmtAgentTrap_17012, mngmtAgentTrap_27018=mngmtAgentTrap_27018, emuEventTrapInformative=emuEventTrapInformative, scellEntry=scellEntry, sCellEventTrap_4_8=sCellEventTrap_4_8, mngmtAgentTrap_2092=mngmtAgentTrap_2092, mngmtAgentTrap_21007=mngmtAgentTrap_21007, mngmtAgentTrap_111=mngmtAgentTrap_111, sCellEventTrap_7_1=sCellEventTrap_7_1, sCellEventTrap_6_2a=sCellEventTrap_6_2a, sCellEventTrap_c_9=sCellEventTrap_c_9, srvModel=srvModel, mngmtAgentTrap_1010=mngmtAgentTrap_1010, mngmtAgentTrap_18=mngmtAgentTrap_18, mngmtAgentTrap_4042=mngmtAgentTrap_4042, mngmtAgentTrap_2081=mngmtAgentTrap_2081, hostName=hostName, mngmtAgentTrap_27006=mngmtAgentTrap_27006, mngmtAgentTrap_42=mngmtAgentTrap_42, mngmtAgentTrap_6036=mngmtAgentTrap_6036, mngmtAgentTrap_3067=mngmtAgentTrap_3067, mngmtAgentTrap_16012=mngmtAgentTrap_16012, sCellEventTrap_4_3=sCellEventTrap_4_3, mngmtAgentTrap_74=mngmtAgentTrap_74, mngmtAgentTrap_17002=mngmtAgentTrap_17002, mngmtAgentTrap_8052=mngmtAgentTrap_8052, mngmtAgentTrap_6028=mngmtAgentTrap_6028, mngmtAgentTrap_9021=mngmtAgentTrap_9021, sCellEventTrap_9_23=sCellEventTrap_9_23, mngmtAgentTrap_17=mngmtAgentTrap_17, mngmtAgentTrap_27028=mngmtAgentTrap_27028, mngmtAgentTrap_110=mngmtAgentTrap_110, mngmtAgentTrap_5011=mngmtAgentTrap_5011, sCellEventTrap_d_82=sCellEventTrap_d_82, sCellEventTrap_9_24=sCellEventTrap_9_24, mngmtAgentTrap_6018=mngmtAgentTrap_6018, mngmtAgentTrap_4034=mngmtAgentTrap_4034, sCellEventTrap_d_7e=sCellEventTrap_d_7e, sCellEventTrap_9_40=sCellEventTrap_9_40, mngmtAgentTrap_27=mngmtAgentTrap_27, mngmtAgentTrap_2021=mngmtAgentTrap_2021, sCellEventTrap_9_2f=sCellEventTrap_9_2f, mngmtAgentTrap_55=mngmtAgentTrap_55, sCellEventTrap_83_2=sCellEventTrap_83_2, mngmtAgentTrap_1008=mngmtAgentTrap_1008, mngmtAgentTrap_79=mngmtAgentTrap_79, mngmtAgentTrap_1011=mngmtAgentTrap_1011, mngmtAgentTrap_77=mngmtAgentTrap_77, sCellEventTrap_3_6=sCellEventTrap_3_6, mngmtAgentTrap_18002=mngmtAgentTrap_18002, mngmtAgentTrap_24004=mngmtAgentTrap_24004, sCellEventTrap_3_3=sCellEventTrap_3_3, mngmtAgentTrap_8050=mngmtAgentTrap_8050, agentEntry=agentEntry, mngmtAgentTrap_20005=mngmtAgentTrap_20005, mngmtAgentTrap_10010=mngmtAgentTrap_10010, sCellEventTrap_6_8=sCellEventTrap_6_8, mngmtAgentTrap_27047=mngmtAgentTrap_27047, sCellEventTrap_9_d7=sCellEventTrap_9_d7, mngmtAgentTrap_9002=mngmtAgentTrap_9002, mngmtAgentTrap_9020=mngmtAgentTrap_9020, mngmtAgentTrap_5018=mngmtAgentTrap_5018, sCellEventTrap_d_33=sCellEventTrap_d_33, mngmtAgentTrap_109=mngmtAgentTrap_109, mngmtAgentTrap_2042=mngmtAgentTrap_2042, mngmtAgentTrap_3062=mngmtAgentTrap_3062, mngmtAgentTrap_8021=mngmtAgentTrap_8021, mngmtAgentTrap_3012=mngmtAgentTrap_3012, mngmtAgentTrap_10035=mngmtAgentTrap_10035, mngmtAgentTrap_17005=mngmtAgentTrap_17005, mngmtAgentTrap_9032=mngmtAgentTrap_9032, mngmtAgentTrap_20023=mngmtAgentTrap_20023, mngmtAgentTrap_4005=mngmtAgentTrap_4005, mngmtAgentTrap_5019=mngmtAgentTrap_5019, mngmtAgentTrap_10038=mngmtAgentTrap_10038, sCellEventTrap_9_f=sCellEventTrap_9_f, mngmtAgentTrap_13020=mngmtAgentTrap_13020, mngmtAgentTrap_14007=mngmtAgentTrap_14007, mngmtAgentTrap_27031=mngmtAgentTrap_27031, mngmtAgentTrap_6=mngmtAgentTrap_6, mngmtAgentTrap_18070=mngmtAgentTrap_18070, agDescription=agDescription, sCellEventTrap_c_10=sCellEventTrap_c_10, mngmtAgentTrap_4036=mngmtAgentTrap_4036, mngmtAgentTrap_8058=mngmtAgentTrap_8058, mngmtAgentTrap_16008=mngmtAgentTrap_16008, mngmtAgentTrap_21016=mngmtAgentTrap_21016, mngmtAgentTrap_24002=mngmtAgentTrap_24002, sCellEventTrap_9_76=sCellEventTrap_9_76, mngmtAgentTrap_4014=mngmtAgentTrap_4014, mngmtAgentTrap_8084=mngmtAgentTrap_8084, sCellEventTrap_9_3c=sCellEventTrap_9_3c, mngmtAgentTrap_8046=mngmtAgentTrap_8046, mngmtAgentTrap_26016=mngmtAgentTrap_26016, mngmtAgentTrap_78=mngmtAgentTrap_78, sCellEventTrap_4_f=sCellEventTrap_4_f, sCellEventTrap_6_21=sCellEventTrap_6_21, mngmtAgentTrap_85=mngmtAgentTrap_85, mngmtAgentTrap_3079=mngmtAgentTrap_3079, mngmtAgentTrap_4017=mngmtAgentTrap_4017, mngmtAgentTrap_6013=mngmtAgentTrap_6013, mngmtAgentTrap_4021=mngmtAgentTrap_4021, mngmtAgentTrap_16023=mngmtAgentTrap_16023, mngmtAgentTrap_19=mngmtAgentTrap_19, mngmtAgentTrap_8014=mngmtAgentTrap_8014, mngmtAgentTrap_21001=mngmtAgentTrap_21001, mngmtAgentTrap_21019=mngmtAgentTrap_21019, sCellEventTrap_9_67=sCellEventTrap_9_67, mngmtAgentTrap_53=mngmtAgentTrap_53, mngmtAgentTrap_2096=mngmtAgentTrap_2096, mngmtAgentTrap_71=mngmtAgentTrap_71, mngmtAgentTrap_27036=mngmtAgentTrap_27036, mngmtAgentTrap_89=mngmtAgentTrap_89, mngmtAgentTrap_1012=mngmtAgentTrap_1012, mngmtAgentTrap_1013=mngmtAgentTrap_1013, mngmtAgentTrap_8081=mngmtAgentTrap_8081, mngmtAgentTrap_11002=mngmtAgentTrap_11002, shelf=shelf, sCellEventTrap_6_16=sCellEventTrap_6_16, mngmtAgentTrap_17001=mngmtAgentTrap_17001, mngmtAgentTrap_6037=mngmtAgentTrap_6037, mngmtAgentTrap_2086=mngmtAgentTrap_2086, mngmtAgentTrap_6035=mngmtAgentTrap_6035, sCellEventTrap_d_83=sCellEventTrap_d_83, mngmtAgentTrap_8074=mngmtAgentTrap_8074, mngmtAgentTrap_26002=mngmtAgentTrap_26002, sCellEventTrap_6_32=sCellEventTrap_6_32, mngmtAgentTrap_27023=mngmtAgentTrap_27023, srvCPU=srvCPU, agEnterprise=agEnterprise, mngmtAgentTrap_18066=mngmtAgentTrap_18066, mngmtAgentTrap_126=mngmtAgentTrap_126, mngmtAgentTrap_16022=mngmtAgentTrap_16022, sCellEventTrap_9_47=sCellEventTrap_9_47, sCellEventTrap_9_7a=sCellEventTrap_9_7a, sCellEventTrap_c_7=sCellEventTrap_c_7, mngmtAgentTrap_2002=mngmtAgentTrap_2002, mngmtAgentTrap_9006=mngmtAgentTrap_9006, sCellEventTrap_c_5=sCellEventTrap_c_5, sCellEventTrap_d_dd=sCellEventTrap_d_dd, mngmtAgentTrap_12=mngmtAgentTrap_12, mngmtAgentTrap_2089=mngmtAgentTrap_2089, mngmtAgentTrap_3057=mngmtAgentTrap_3057, mngmtAgentTrap_6019=mngmtAgentTrap_6019, mngmtAgentTrap_6021=mngmtAgentTrap_6021, sCellEventTrap_6_10=sCellEventTrap_6_10, mngmtAgentTrap_3050=mngmtAgentTrap_3050, sCellEventTrap_6_29=sCellEventTrap_6_29, mngmtAgentTrap_8018=mngmtAgentTrap_8018, shelfTotal=shelfTotal, sCellEventTrap_9_1d=sCellEventTrap_9_1d, mngmtAgentTrap_106=mngmtAgentTrap_106, mngmtAgentTrap_17008=mngmtAgentTrap_17008, mngmtAgentTrap_21006=mngmtAgentTrap_21006, sCellEventTrap_9_2=sCellEventTrap_9_2, mngmtAgentTrap_16030=mngmtAgentTrap_16030, mngmtAgentTrap_3028=mngmtAgentTrap_3028, mngmtAgentTrap_3077=mngmtAgentTrap_3077, mngmtAgentTrap_26=mngmtAgentTrap_26, mngmtAgentTrap_122=mngmtAgentTrap_122, mngmtAgentTrap_9011=mngmtAgentTrap_9011, mngmtAgentTrap_27011=mngmtAgentTrap_27011, mngmtAgentTrap_90=mngmtAgentTrap_90, mngmtAgentTrap_26014=mngmtAgentTrap_26014, sCellEventTrap_4_11=sCellEventTrap_4_11, mngmtAgentTrap_25010=mngmtAgentTrap_25010, mngmtAgentTrap_4015=mngmtAgentTrap_4015, sCellEventTrap_d_0=sCellEventTrap_d_0, mngmtAgentTrap_113=mngmtAgentTrap_113, sCellEventTrap_9_3b=sCellEventTrap_9_3b, mngmtAgentTrap_8088=mngmtAgentTrap_8088, mngmtAgentTrap_27012=mngmtAgentTrap_27012, sCellEventTrap_4_a=sCellEventTrap_4_a)
mibBuilder.exportSymbols('CPQHSV110V3-MIB', mngmtAgentTrap_3080=mngmtAgentTrap_3080, mngmtAgentTrap_16026=mngmtAgentTrap_16026, sCellEventTrap_9_2b=sCellEventTrap_9_2b, mngmtAgentTrap_39=mngmtAgentTrap_39, scellEventTimeDate=scellEventTimeDate, srvOS=srvOS, mngmtAgentTrap_17014=mngmtAgentTrap_17014, mngmtAgentTrap_5001=mngmtAgentTrap_5001, mngmtAgentTrap_6029=mngmtAgentTrap_6029, mngmtAgentTrap_8047=mngmtAgentTrap_8047, mngmtAgentTrap_16021=mngmtAgentTrap_16021, mngmtAgentTrap_1014=mngmtAgentTrap_1014, mngmtAgentTrap_3071=mngmtAgentTrap_3071, mngmtAgentTrap_16027=mngmtAgentTrap_16027, mngmtAgentTrap_26013=mngmtAgentTrap_26013, mngmtAgentTrap_8004=mngmtAgentTrap_8004, mngmtAgentTrap_20015=mngmtAgentTrap_20015, sCellEventTrap_4_0=sCellEventTrap_4_0, sCellEventTrap_9_6e=sCellEventTrap_9_6e, mngmtAgentTrap_8089=mngmtAgentTrap_8089, mngmtAgentTrap_25014=mngmtAgentTrap_25014, mngmtAgentTrap_21008=mngmtAgentTrap_21008, sCellEventTrap_3_5=sCellEventTrap_3_5, mngmtAgentTrap_4025=mngmtAgentTrap_4025, mngmtAgentTrap_23=mngmtAgentTrap_23, mngmtAgentTrap_2083=mngmtAgentTrap_2083, mngmtAgentTrap_3002=mngmtAgentTrap_3002, sCellEventTrap_9_2d=sCellEventTrap_9_2d, sCellEventTrap_6_33=sCellEventTrap_6_33, mngmtAgentTrap_3092=mngmtAgentTrap_3092, mngmtAgentTrap_6038=mngmtAgentTrap_6038, sCellEventTrap_9_6b=sCellEventTrap_9_6b, sCellEventTrap_6_2b=sCellEventTrap_6_2b, sCellEventTrap_9_cd=sCellEventTrap_9_cd, sCellEventTrap_4_10=sCellEventTrap_4_10, nscEntryIndex=nscEntryIndex, scellEIP=scellEIP, mngmtAgentTrap_12008=mngmtAgentTrap_12008, mngmtAgentTrap_10042=mngmtAgentTrap_10042, mngmtAgentTrap_24003=mngmtAgentTrap_24003, mngmtAgentTrap_25003=mngmtAgentTrap_25003, sCellEventTrap_9_13=sCellEventTrap_9_13, mngmtAgentTrap_30=mngmtAgentTrap_30, sCellEventTrap_9_65=sCellEventTrap_9_65, mngmtAgentTrap_21004=mngmtAgentTrap_21004, mngmtAgentTrap_27027=mngmtAgentTrap_27027, srvBiosVersion=srvBiosVersion, mngmtAgentTrap_5012=mngmtAgentTrap_5012, cpqHSVServer=cpqHSVServer, mngmtAgentTrap_33=mngmtAgentTrap_33, sCellEventTrap_6_23=sCellEventTrap_6_23, mngmtAgentTrap_16033=mngmtAgentTrap_16033, cpqHSVAgent=cpqHSVAgent, mngmtAgentTrap_18076=mngmtAgentTrap_18076, mngmtAgentTrap_27035=mngmtAgentTrap_27035, mngmtAgentTrap_9026=mngmtAgentTrap_9026, mngmtAgentTrap_1009=mngmtAgentTrap_1009, sCellEventTrap_6_12=sCellEventTrap_6_12, mngmtAgentTrap_2022=mngmtAgentTrap_2022, mngmtAgentTrap_16013=mngmtAgentTrap_16013, mngmtAgentTrap_6007=mngmtAgentTrap_6007, mngmtAgentTrap_3076=mngmtAgentTrap_3076, mngmtAgentTrap_9029=mngmtAgentTrap_9029, agentEventCode=agentEventCode, mngmtAgentTrap_3009=mngmtAgentTrap_3009, mngmtAgentTrap_8020=mngmtAgentTrap_8020, mngmtAgentTrap_81=mngmtAgentTrap_81, mngmtAgentTrap_6025=mngmtAgentTrap_6025, mngmtAgentTrap_18019=mngmtAgentTrap_18019, mngmtAgentTrap_95=mngmtAgentTrap_95, mngmtAgentTrap_2090=mngmtAgentTrap_2090, mngmtAgentTrap_8061=mngmtAgentTrap_8061, mngmtAgentTrap_18047=mngmtAgentTrap_18047, sCellEventTrap_7_8=sCellEventTrap_7_8, mngmtAgentTrap_18067=mngmtAgentTrap_18067, sCellEventTrap_4_6=sCellEventTrap_4_6, srvSubModel=srvSubModel, mngmtAgentTrap_108=mngmtAgentTrap_108, mngmtAgentTrap_6015=mngmtAgentTrap_6015, mngmtAgentTrap_8035=mngmtAgentTrap_8035, scellStatusTable=scellStatusTable, sCellEventTrap_c_1=sCellEventTrap_c_1, sCellEventTrap_83_5=sCellEventTrap_83_5, mngmtAgentTrap_6009=mngmtAgentTrap_6009, mngmtAgentTrap_8026=mngmtAgentTrap_8026, mngmtAgentTrap_8045=mngmtAgentTrap_8045, mngmtAgentTrap_14004=mngmtAgentTrap_14004, mngmtAgentTrap_2016=mngmtAgentTrap_2016, mngmtAgentTrap_18080=mngmtAgentTrap_18080, mngmtAgentTrap_26008=mngmtAgentTrap_26008, sCellEventTrap_1_1=sCellEventTrap_1_1, sCellEventTrap_3_8=sCellEventTrap_3_8, mngmtAgentTrap_8065=mngmtAgentTrap_8065, mngmtAgentTrap_115=mngmtAgentTrap_115, mngmtAgentTrap_128=mngmtAgentTrap_128, sCellEventTrap_9_38=sCellEventTrap_9_38, sCellEventTrap_9_36=sCellEventTrap_9_36, mngmtAgentTrap_8032=mngmtAgentTrap_8032, sCellEventTrap_6_b=sCellEventTrap_6_b, mngmtAgentTrap_4027=mngmtAgentTrap_4027, mngmtAgentTrap_2082=mngmtAgentTrap_2082, mngmtAgentTrap_10024=mngmtAgentTrap_10024, sCellEventTrap_4_c=sCellEventTrap_4_c, mngmtAgentTrap_27007=mngmtAgentTrap_27007, mngmtAgentTrap_10004=mngmtAgentTrap_10004, mngmtAgentTrap_21011=mngmtAgentTrap_21011, sCellEventTrap_9_6a=sCellEventTrap_9_6a, mngmtAgentTrap_2025=mngmtAgentTrap_2025, mngmtAgentTrap_3036=mngmtAgentTrap_3036, mngmtAgentTrap_18042=mngmtAgentTrap_18042, sCellEventTrap_9_27=sCellEventTrap_9_27, mngmtAgentTrap_15004=mngmtAgentTrap_15004, mngmtAgentTrap_132=mngmtAgentTrap_132, sCellEventTrap_83_1=sCellEventTrap_83_1, mngmtAgentTrap_9=mngmtAgentTrap_9, mngmtAgentTrap_17009=mngmtAgentTrap_17009, mngmtAgentTrap_9014=mngmtAgentTrap_9014, mngmtAgentTrap_4011=mngmtAgentTrap_4011, mngmtAgentTrap_13015=mngmtAgentTrap_13015, mngmtAgentTrap_8016=mngmtAgentTrap_8016, mngmtAgentTrap_9010=mngmtAgentTrap_9010, mngmtAgentTrap_18010=mngmtAgentTrap_18010, mngmtAgentTrap_119=mngmtAgentTrap_119, mngmtAgentTrap_131=mngmtAgentTrap_131, scellEntryIndex=scellEntryIndex, sCellEventTrap_9_32=sCellEventTrap_9_32, mngmtAgentTrap_18068=mngmtAgentTrap_18068, scellECode=scellECode, sCellEventTrap_6_1f=sCellEventTrap_6_1f, sCellEventTrap_4_5=sCellEventTrap_4_5, mngmtAgentTrap_6026=mngmtAgentTrap_6026, sCellEventTrap_9_1e=sCellEventTrap_9_1e, sCellEventTrap_9_29=sCellEventTrap_9_29, mngmtAgentTrap_6027=mngmtAgentTrap_6027, mngmtAgentTrap_4001=mngmtAgentTrap_4001, mngmtAgentTrap_3024=mngmtAgentTrap_3024, mngmtAgentTrap_16025=mngmtAgentTrap_16025, mngmtAgentTrap_13009=mngmtAgentTrap_13009, sCellEventTrap_6_d=sCellEventTrap_6_d, sCellEventTrap_9_11=sCellEventTrap_9_11, mngmtAgentTrap_2075=mngmtAgentTrap_2075, mngmtAgentTrap_8076=mngmtAgentTrap_8076, mngmtAgentTrap_8082=mngmtAgentTrap_8082, mngmtAgentTrap_25=mngmtAgentTrap_25, sCellEventTrap_6_1c=sCellEventTrap_6_1c, mngmtAgentTrap_4051=mngmtAgentTrap_4051, sCellEventTrap_d_47=sCellEventTrap_d_47, sCellEventTrap_6_9=sCellEventTrap_6_9, mngmtAgentTrap_125=mngmtAgentTrap_125, mngmtAgentTrap_10011=mngmtAgentTrap_10011, mngmtAgentTrap_2074=mngmtAgentTrap_2074, mngmtAgentTrap_12004=mngmtAgentTrap_12004, mngmtAgentTrap_3091=mngmtAgentTrap_3091, mngmtAgentTrap_6017=mngmtAgentTrap_6017, nsc=nsc, mngmtAgentTrap_14006=mngmtAgentTrap_14006, sCellEventTrap_c_8=sCellEventTrap_c_8, mngmtAgentTrap_16029=mngmtAgentTrap_16029, mngmtAgentTrap_3=mngmtAgentTrap_3, mngmtAgentTrap_8003=mngmtAgentTrap_8003, host=host, mngmtAgentTrap_10013=mngmtAgentTrap_10013, sCellEventTrap_d_34=sCellEventTrap_d_34, mngmtAgentTrap_18081=mngmtAgentTrap_18081, mngmtAgentTrap_82=mngmtAgentTrap_82, mngmtAgentTrap_5006=mngmtAgentTrap_5006, mngmtAgentTrap_2048=mngmtAgentTrap_2048, mngmtAgentTrap_3065=mngmtAgentTrap_3065, sCellEventTrap_c_a=sCellEventTrap_c_a, mngmtAgentTrap_58=mngmtAgentTrap_58, mngmtAgentTrap_8017=mngmtAgentTrap_8017, mngmtAgentTrap_25017=mngmtAgentTrap_25017, mngmtAgentTrap_13004=mngmtAgentTrap_13004, mngmtAgentTrap_8059=mngmtAgentTrap_8059, sCellEventTrap_6_27=sCellEventTrap_6_27, sCellEventTrap_9_2c=sCellEventTrap_9_2c, mngmtAgentTrap_51=mngmtAgentTrap_51, hsvObject=hsvObject, sCellEventTrap_6_39=sCellEventTrap_6_39, mngmtAgentTrap_76=mngmtAgentTrap_76, sCellEventTrap_9_68=sCellEventTrap_9_68, mngmtAgentTrap_133=mngmtAgentTrap_133, mngmtAgentTrap_2034=mngmtAgentTrap_2034, mngmtAgentTrap_2069=mngmtAgentTrap_2069, mngmtAgentTrap_10025=mngmtAgentTrap_10025, mngmtAgentTrap_2026=mngmtAgentTrap_2026, mngmtAgentTrap_2084=mngmtAgentTrap_2084, sCellEventTrap_9_1b=sCellEventTrap_9_1b, sCellEventTrap_3_7=sCellEventTrap_3_7, sCellEventTrap_1_0=sCellEventTrap_1_0, sCellEventTrap_9_75=sCellEventTrap_9_75, mngmtAgentTrap_5=mngmtAgentTrap_5, mngmtAgentTrap_18036=mngmtAgentTrap_18036, mngmtAgentTrap_5008=mngmtAgentTrap_5008, shelfErrorCode=shelfErrorCode, sCellEventTrap_6_36=sCellEventTrap_6_36, mngmtAgentTrap_8068=mngmtAgentTrap_8068, mngmtAgentTrap_8079=mngmtAgentTrap_8079, mngmtAgentTrap_27039=mngmtAgentTrap_27039, mngmtAgentTrap_17013=mngmtAgentTrap_17013, sCellEventTrap_3_0=sCellEventTrap_3_0, sCellEventTrap_d_3=sCellEventTrap_d_3, mngmtAgentTrap_18063=mngmtAgentTrap_18063, mngmtAgentTrap_8066=mngmtAgentTrap_8066, mngmtAgentTrap_18073=mngmtAgentTrap_18073, cpqElementManager=cpqElementManager, sCellEventTrap_6_31=sCellEventTrap_6_31, mngmtAgentTrap_70=mngmtAgentTrap_70, sCellEventTrap_d_71=sCellEventTrap_d_71, mngmtAgentTrap_18040=mngmtAgentTrap_18040, sCellEventTrap_9_6c=sCellEventTrap_9_6c, mngmtAgentTrap_21012=mngmtAgentTrap_21012, mngmtAgentTrap_4035=mngmtAgentTrap_4035, mngmtAgentTrap_18008=mngmtAgentTrap_18008, mngmtAgentTrap_8069=mngmtAgentTrap_8069, sCellEventTrap_9_d6=sCellEventTrap_9_d6, mngmtAgentTrap_3055=mngmtAgentTrap_3055, mngmtAgentTrap_10030=mngmtAgentTrap_10030, mngmtAgentTrap_73=mngmtAgentTrap_73, mngmtAgentTrap_25006=mngmtAgentTrap_25006, sCellEventTrap_9_d3=sCellEventTrap_9_d3, mngmtAgentTrap_3045=mngmtAgentTrap_3045, sCellEventTrap_d_a1=sCellEventTrap_d_a1, mngmtAgentTrap_66=mngmtAgentTrap_66, mngmtAgentTrap_25011=mngmtAgentTrap_25011, mngmtAgentTrap_10041=mngmtAgentTrap_10041, mngmtAgentTrap_100=mngmtAgentTrap_100, mngmtAgentTrap_26015=mngmtAgentTrap_26015, mngmtAgentTrap_21013=mngmtAgentTrap_21013, agentEventLevel=agentEventLevel, hostEntry=hostEntry, mngmtAgentTrap_4053=mngmtAgentTrap_4053, mngmtAgentTrap_27041=mngmtAgentTrap_27041, sCellEventTrap_d_8d=sCellEventTrap_d_8d, mngmtAgentTrap_7=mngmtAgentTrap_7, emuEventTrapUnrecoverable=emuEventTrapUnrecoverable, mngmtAgentTrap_9005=mngmtAgentTrap_9005, sCellEventTrap_7_0=sCellEventTrap_7_0, mngmtAgentTrap_121=mngmtAgentTrap_121, scellSWComponent=scellSWComponent, sCellEventTrap_4_d=sCellEventTrap_4_d, sCellEventTrap_6_3a=sCellEventTrap_6_3a, mngmtAgentTrap_2093=mngmtAgentTrap_2093, mngmtAgentTrap_2036=mngmtAgentTrap_2036, mngmtAgentTrap_9012=mngmtAgentTrap_9012, mngmtAgentTrap_25019=mngmtAgentTrap_25019, sCellEventTrap_9_37=sCellEventTrap_9_37, mngmtAgentTrap_3081=mngmtAgentTrap_3081, mngmtAgentTrap_9007=mngmtAgentTrap_9007, mngmtAgentTrap_3049=mngmtAgentTrap_3049, mngmtAgentTrap_10012=mngmtAgentTrap_10012, sCellEventTrap_9_49=sCellEventTrap_9_49, mngmtAgentTrap_8028=mngmtAgentTrap_8028, mngmtAgentTrap_16024=mngmtAgentTrap_16024)
mibBuilder.exportSymbols('CPQHSV110V3-MIB', mngmtAgentTrap_17017=mngmtAgentTrap_17017, mngmtAgentTrap_6034=mngmtAgentTrap_6034, mngmtAgentTrap_4052=mngmtAgentTrap_4052, mngmtAgentTrap_20003=mngmtAgentTrap_20003, mngmtAgentTrap_3046=mngmtAgentTrap_3046, sCellEventTrap_7_4=sCellEventTrap_7_4, mngmtAgentTrap_5016=mngmtAgentTrap_5016, emuEventTrapNoncritical=emuEventTrapNoncritical, sCellEventTrap_9_1=sCellEventTrap_9_1, mngmtAgentTrap_8010=mngmtAgentTrap_8010, mngmtAgentTrap_9001=mngmtAgentTrap_9001, mngmtAgentTrap_18001=mngmtAgentTrap_18001, mngmtAgentTrap_27004=mngmtAgentTrap_27004, mngmtAgentTrap_2013=mngmtAgentTrap_2013, sCellEventTrap_9_7=sCellEventTrap_9_7, mngmtAgentTrap_3020=mngmtAgentTrap_3020, mngmtAgentTrap_2077=mngmtAgentTrap_2077, mngmtAgentTrap_120=mngmtAgentTrap_120, mngmtAgentTrap_14013=mngmtAgentTrap_14013, maHSVMibRev=maHSVMibRev, mngmtAgentTrap_23002=mngmtAgentTrap_23002, agStatusTable=agStatusTable, mngmtAgentTrap_8036=mngmtAgentTrap_8036, mngmtAgentTrap_6008=mngmtAgentTrap_6008, sCellEventTrap_d_4c=sCellEventTrap_d_4c, mngmtAgentTrap_17015=mngmtAgentTrap_17015, sCellEventTrap_d_b5=sCellEventTrap_d_b5, sCellEventTrap_c_11=sCellEventTrap_c_11, mngmtAgentTrap_2040=mngmtAgentTrap_2040, mngmtAgentTrap_8009=mngmtAgentTrap_8009, mngmtAgentTrap_27044=mngmtAgentTrap_27044, mngmtAgentTrap_5014=mngmtAgentTrap_5014, sCellEventTrap_9_44=sCellEventTrap_9_44, srvComputerType=srvComputerType, mngmtAgentTrap_2032=mngmtAgentTrap_2032, sCellEventTrap_9_22=sCellEventTrap_9_22, scellEventCode=scellEventCode, sCellEventTrap_9_2a=sCellEventTrap_9_2a, mngmtAgentTrap_6014=mngmtAgentTrap_6014, mngmtAgentTrap_8006=mngmtAgentTrap_8006, mngmtAgentTrap_15001=mngmtAgentTrap_15001, shelfId=shelfId, sCellEventTrap_3_4=sCellEventTrap_3_4, mngmtAgentTrap_48=mngmtAgentTrap_48, maHSVMibRevMajor=maHSVMibRevMajor, mngmtAgentTrap_16015=mngmtAgentTrap_16015, mngmtAgentTrap_25016=mngmtAgentTrap_25016, mngmtAgentTrap_2041=mngmtAgentTrap_2041, mngmtAgentTrap_6024=mngmtAgentTrap_6024, mngmtAgentTrap_8041=mngmtAgentTrap_8041, hostTotal=hostTotal, mngmtAgentTrap_15008=mngmtAgentTrap_15008, sCellEventTrap_9_20=sCellEventTrap_9_20, mngmtAgentTrap_34=mngmtAgentTrap_34, mngmtAgentTrap_6005=mngmtAgentTrap_6005, nscTotal=nscTotal, agentEventDescription=agentEventDescription, mngmtAgentTrap_9015=mngmtAgentTrap_9015, mngmtAgentTrap_3048=mngmtAgentTrap_3048, mngmtAgentTrap_40=mngmtAgentTrap_40, mngmtAgentTrap_25001=mngmtAgentTrap_25001, sCellEventTrap_9_ca=sCellEventTrap_9_ca, mngmtAgentTrap_8033=mngmtAgentTrap_8033, mngmtAgentTrap_2103=mngmtAgentTrap_2103, mngmtAgentTrap_18004=mngmtAgentTrap_18004, mngmtAgentTrap_25004=mngmtAgentTrap_25004, mngmtAgentTrap_2078=mngmtAgentTrap_2078, sCellEventTrap_6_14=sCellEventTrap_6_14, mngmtAgentTrap_9017=mngmtAgentTrap_9017, emuEventTrapCritical=emuEventTrapCritical, sCellEventTrap_42_3=sCellEventTrap_42_3, mngmtAgentTrap_6012=mngmtAgentTrap_6012, mngmtAgentTrap_8056=mngmtAgentTrap_8056, mngmtAgentTrap_9022=mngmtAgentTrap_9022, mngmtAgentTrap_24001=mngmtAgentTrap_24001, mngmtAgentTrap_27049=mngmtAgentTrap_27049, sCellEventTrap_7_2=sCellEventTrap_7_2, nscStatus=nscStatus, mngmtAgentTrap_3051=mngmtAgentTrap_3051, sCellEventTrap_9_14=sCellEventTrap_9_14, mngmtAgentTrap_16016=mngmtAgentTrap_16016, mngmtAgentTrap_105=mngmtAgentTrap_105, sCellEventTrap_9_3a=sCellEventTrap_9_3a, sCellEventTrap_d_7f=sCellEventTrap_d_7f, mngmtAgentTrap_15006=mngmtAgentTrap_15006, mngmtAgentTrap_3061=mngmtAgentTrap_3061, mngmtAgentTrap_25012=mngmtAgentTrap_25012, mngmtAgentTrap_13002=mngmtAgentTrap_13002, sCellEventTrap_6_5=sCellEventTrap_6_5, mngmtAgentTrap_8=mngmtAgentTrap_8, mngmtAgentTrap_18052=mngmtAgentTrap_18052, mngmtAgentTrap_27014=mngmtAgentTrap_27014, mngmtAgentTrap_3017=mngmtAgentTrap_3017, sCellEventTrap_9_d0=sCellEventTrap_9_d0, agentEntryIndex=agentEntryIndex, sCellEventTrap_d_35=sCellEventTrap_d_35, sCellEventTrap_9_43=sCellEventTrap_9_43, sCellEventTrap_7_3=sCellEventTrap_7_3, mngmtAgentTrap_1003=mngmtAgentTrap_1003, mngmtAgentTrap_10019=mngmtAgentTrap_10019, sCellEventTrap_9_69=sCellEventTrap_9_69, mngmtAgentTrap_2035=mngmtAgentTrap_2035, mngmtAgentTrap_4049=mngmtAgentTrap_4049, mngmtAgentTrap_10017=mngmtAgentTrap_10017, mngmtAgentTrap_8039=mngmtAgentTrap_8039, mngmtAgentTrap_16004=mngmtAgentTrap_16004, mngmtAgentTrap_10043=mngmtAgentTrap_10043, mngmtAgentTrap_10=mngmtAgentTrap_10, mngmtAgentTrap_8051=mngmtAgentTrap_8051, mngmtAgentTrap_8070=mngmtAgentTrap_8070, mngmtAgentTrap_18074=mngmtAgentTrap_18074, sCellEventTrap_c_4=sCellEventTrap_c_4, mngmtAgentTrap_14002=mngmtAgentTrap_14002, mngmtAgentTrap_5010=mngmtAgentTrap_5010, sCellEventTrap_9_cc=sCellEventTrap_9_cc, mngmtAgentTrap_10018=mngmtAgentTrap_10018, sCellEventTrap_b_0=sCellEventTrap_b_0, mngmtAgentTrap_27016=mngmtAgentTrap_27016, mngmtAgentTrap_10014=mngmtAgentTrap_10014, sCellEventTrap_9_28=sCellEventTrap_9_28, mngmtAgentTrap_52=mngmtAgentTrap_52, mngmtAgentTrap_13003=mngmtAgentTrap_13003, mngmtAgentTrap_11001=mngmtAgentTrap_11001, mngmtAgentTrap_4037=mngmtAgentTrap_4037, mngmtAgentTrap_27034=mngmtAgentTrap_27034, mngmtAgentTrap_35=mngmtAgentTrap_35, sCellEventTrap_d_85=sCellEventTrap_d_85, mngmtAgentTrap_2023=mngmtAgentTrap_2023, sCellEventTrap_9_c8=sCellEventTrap_9_c8, sCellEventTrap_c_3=sCellEventTrap_c_3, mngmtAgentTrap_20020=mngmtAgentTrap_20020, hostStatus=hostStatus, mngmtAgentTrap_27002=mngmtAgentTrap_27002, mngmtAgentTrap_10023=mngmtAgentTrap_10023, mngmtAgentTrap_18018=mngmtAgentTrap_18018, sCellEventTrap_6_34=sCellEventTrap_6_34, mngmtAgentTrap_104=mngmtAgentTrap_104, mngmtAgentTrap_12003=mngmtAgentTrap_12003, mngmtAgentTrap_117=mngmtAgentTrap_117, sCellEventTrap_6_24=sCellEventTrap_6_24, mngmtAgentTrap_2085=mngmtAgentTrap_2085, mngmtAgentTrap_8019=mngmtAgentTrap_8019, mngmtAgentTrap_5005=mngmtAgentTrap_5005, mngmtAgentTrap_16014=mngmtAgentTrap_16014, mngmtAgentTrap_2003=mngmtAgentTrap_2003, mngmtAgentTrap_8025=mngmtAgentTrap_8025, mngmtAgentTrap_8087=mngmtAgentTrap_8087, mngmtAgentTrap_14001=mngmtAgentTrap_14001, mngmtAgentTrap_2071=mngmtAgentTrap_2071, mngmtAgentTrap_6033=mngmtAgentTrap_6033, mngmtAgentTrap_2063=mngmtAgentTrap_2063, sCellEventTrap_c_2=sCellEventTrap_c_2, sCellEventTrap_6_1d=sCellEventTrap_6_1d, mngmtAgentTrap_18060=mngmtAgentTrap_18060, mngmtAgentTrap_20021=mngmtAgentTrap_20021, mngmtAgentTrap_27010=mngmtAgentTrap_27010, mngmtAgentTrap_61=mngmtAgentTrap_61, mngmtAgentTrap_3003=mngmtAgentTrap_3003, mngmtAgentTrap_31=mngmtAgentTrap_31, mngmtAgentTrap_17006=mngmtAgentTrap_17006, sCellEventTrap_d_2=sCellEventTrap_d_2, sCellEventTrap_6_30=sCellEventTrap_6_30, mngmtAgentTrap_2006=mngmtAgentTrap_2006, sCellEventTrap_9_2e=sCellEventTrap_9_2e, mngmtAgentTrap_6001=mngmtAgentTrap_6001, sCellEventTrap_9_35=sCellEventTrap_9_35, mngmtAgentTrap_6030=mngmtAgentTrap_6030, sCellEventTrap_9_16=sCellEventTrap_9_16, mngmtAgentTrap_56=mngmtAgentTrap_56, mngmtAgentTrap_118=mngmtAgentTrap_118, mngmtAgentTrap_4032=mngmtAgentTrap_4032, mngmtAgentTrap_3090=mngmtAgentTrap_3090, mngmtAgentTrap_16032=mngmtAgentTrap_16032, sCellEventTrap_9_79=sCellEventTrap_9_79, mngmtAgentTrap_1004=mngmtAgentTrap_1004, mngmtAgentTrap_25018=mngmtAgentTrap_25018, mngmtAgentTrap_8024=mngmtAgentTrap_8024, sCellEventTrap_9_73=sCellEventTrap_9_73, sCellEventTrap_7_6=sCellEventTrap_7_6, mngmtAgentTrap_2070=mngmtAgentTrap_2070, mngmtAgentTrap_9008=mngmtAgentTrap_9008, mngmtAgentTrap_123=mngmtAgentTrap_123, mngmtAgentTrap_28=mngmtAgentTrap_28, mngmtAgentTrap_21015=mngmtAgentTrap_21015, mngmtAgentTrap_15009=mngmtAgentTrap_15009, mngmtAgentTrap_43=mngmtAgentTrap_43, scellUUID=scellUUID, mngmtAgentTrap_93=mngmtAgentTrap_93, sCellEventTrap_d_f0=sCellEventTrap_d_f0, sCellEventTrap_83_6=sCellEventTrap_83_6, mngmtAgentTrap_4031=mngmtAgentTrap_4031, mngmtAgentTrap_2102=mngmtAgentTrap_2102, mngmtAgentTrap_16035=mngmtAgentTrap_16035, mngmtAgentTrap_8023=mngmtAgentTrap_8023, mngmtAgentTrap_38=mngmtAgentTrap_38, mngmtAgentTrap_14=mngmtAgentTrap_14, mngmtAgentTrap_3037=mngmtAgentTrap_3037, mngmtAgentTrap_3053=mngmtAgentTrap_3053, mngmtAgentTrap_4024=mngmtAgentTrap_4024, mngmtAgentTrap_1006=mngmtAgentTrap_1006, mngmtAgentTrap_9019=mngmtAgentTrap_9019, mngmtAgentTrap_62=mngmtAgentTrap_62, sCellEventTrap_6_3d=sCellEventTrap_6_3d, mngmtAgentTrap_13007=mngmtAgentTrap_13007, mngmtAgentTrap_21018=mngmtAgentTrap_21018, mngmtAgentTrap_27005=mngmtAgentTrap_27005, nscUUID=nscUUID, mngmtAgentTrap_6011=mngmtAgentTrap_6011, mngmtAgentTrap_2097=mngmtAgentTrap_2097, mngmtAgentTrap_2073=mngmtAgentTrap_2073, mngmtAgentTrap_60=mngmtAgentTrap_60, mngmtAgentTrap_3066=mngmtAgentTrap_3066, sCellEventTrap_9_45=sCellEventTrap_9_45, mngmtAgentTrap_44=mngmtAgentTrap_44, mngmtAgentTrap_63=mngmtAgentTrap_63, mngmtAgentTrap_3069=mngmtAgentTrap_3069, mngmtAgentTrap_8015=mngmtAgentTrap_8015, mngmtAgentTrap_3025=mngmtAgentTrap_3025, mngmtAgentTrap_4058=mngmtAgentTrap_4058, mngmtAgentTrap_8048=mngmtAgentTrap_8048, sCellEventTrap_6_1b=sCellEventTrap_6_1b, mngmtAgentTrap_6022=mngmtAgentTrap_6022, mngmtAgentTrap_8090=mngmtAgentTrap_8090, mngmtAgentTrap_9031=mngmtAgentTrap_9031, mngmtAgentTrap_14009=mngmtAgentTrap_14009, mngmtAgentTrap_16=mngmtAgentTrap_16, agentStatus=agentStatus, mngmtAgentTrap_10029=mngmtAgentTrap_10029, agent=agent, sCellEventTrap_9_25=sCellEventTrap_9_25, mngmtAgentTrap_4016=mngmtAgentTrap_4016, mngmtAgentTrap_2031=mngmtAgentTrap_2031, mngmtAgentTrap_8053=mngmtAgentTrap_8053, mngmtAgentTrap_10037=mngmtAgentTrap_10037, sCellEventTrap_9_48=sCellEventTrap_9_48, mngmtAgentTrap_3063=mngmtAgentTrap_3063, mngmtAgentTrap_4013=mngmtAgentTrap_4013, mngmtAgentTrap_8037=mngmtAgentTrap_8037, mngmtAgentTrap_2066=mngmtAgentTrap_2066, mngmtAgentTrap_9028=mngmtAgentTrap_9028, sCellEventTrap_9_a=sCellEventTrap_9_a, sCellEventTrap_6_26=sCellEventTrap_6_26, mngmtAgentTrap_1=mngmtAgentTrap_1, mngmtAgentTrap_2057=mngmtAgentTrap_2057, mngmtAgentTrap_26005=mngmtAgentTrap_26005, sCellEventTrap_4_b=sCellEventTrap_4_b, mngmtAgentTrap_8049=mngmtAgentTrap_8049, sCellEventTrap_6_2e=sCellEventTrap_6_2e, mngmtAgentTrap_3086=mngmtAgentTrap_3086, mngmtAgentTrap_4030=mngmtAgentTrap_4030, sCellEventTrap_9_18=sCellEventTrap_9_18, mngmtAgentTrap_6003=mngmtAgentTrap_6003, srvOSMajVersion=srvOSMajVersion, mngmtAgentTrap_6010=mngmtAgentTrap_6010)
mibBuilder.exportSymbols('CPQHSV110V3-MIB', mngmtAgentTrap_18071=mngmtAgentTrap_18071, mngmtAgentTrap_27022=mngmtAgentTrap_27022, mngmtAgentTrap_27045=mngmtAgentTrap_27045, sCellEventTrap_9_71=sCellEventTrap_9_71, agMinVersion=agMinVersion, mngmtAgentTrap_2012=mngmtAgentTrap_2012, mngmtAgentTrap_2065=mngmtAgentTrap_2065, mngmtAgentTrap_4041=mngmtAgentTrap_4041, sCellEventTrap_6_28=sCellEventTrap_6_28, mngmtAgentTrap_8062=mngmtAgentTrap_8062, sCellEventTrap_9_9=sCellEventTrap_9_9, mngmtAgentTrap_27024=mngmtAgentTrap_27024, mngmtAgentTrap_3016=mngmtAgentTrap_3016, mngmtAgentTrap_24=mngmtAgentTrap_24, mngmtAgentTrap_8022=mngmtAgentTrap_8022, mngmtAgentTrap_16017=mngmtAgentTrap_16017, mngmtAgentTrap_4020=mngmtAgentTrap_4020, mngmtAgentTrap_116=mngmtAgentTrap_116, mngmtAgentTrap_2095=mngmtAgentTrap_2095, mngmtAgentTrap_2100=mngmtAgentTrap_2100, mngmtAgentTrap_8038=mngmtAgentTrap_8038, mngmtAgentTrap_8043=mngmtAgentTrap_8043, mngmtAgentTrap_16038=mngmtAgentTrap_16038, mngmtAgentTrap_10028=mngmtAgentTrap_10028, sCellEventTrap_9_39=sCellEventTrap_9_39, mngmtAgentTrap_1007=mngmtAgentTrap_1007, mngmtAgentTrap_2050=mngmtAgentTrap_2050, srvOSMinVersion=srvOSMinVersion, mngmtAgentTrap_2051=mngmtAgentTrap_2051, sCellEventTrap_9_1a=sCellEventTrap_9_1a, mngmtAgentTrap_14008=mngmtAgentTrap_14008, mngmtAgentTrap_18049=mngmtAgentTrap_18049, mngmtAgentTrap_26011=mngmtAgentTrap_26011, sCellEventTrap_c_c=sCellEventTrap_c_c, mngmtAgentTrap_8057=mngmtAgentTrap_8057, mngmtAgentTrap_26006=mngmtAgentTrap_26006, mngmtAgentTrap_2068=mngmtAgentTrap_2068, mngmtAgentTrap_4004=mngmtAgentTrap_4004, sCellEventTrap_d_de=sCellEventTrap_d_de, mngmtAgentTrap_2087=mngmtAgentTrap_2087, mngmtAgentTrap_14010=mngmtAgentTrap_14010, mngmtAgentTrap_22002=mngmtAgentTrap_22002, mngmtAgentTrap_18022=mngmtAgentTrap_18022, agHostName=agHostName, mngmtAgentTrap_2038=mngmtAgentTrap_2038, mngmtAgentTrap_2091=mngmtAgentTrap_2091, mngmtAgentTrap_16028=mngmtAgentTrap_16028, mngmtAgentTrap_1002=mngmtAgentTrap_1002, mngmtAgentTrap_45=mngmtAgentTrap_45, mngmtAgentTrap_8080=mngmtAgentTrap_8080, mngmtAgentTrap_2011=mngmtAgentTrap_2011, mngmtAgentTrap_3095=mngmtAgentTrap_3095, scellName=scellName, mngmtAgentTrap_8034=mngmtAgentTrap_8034, sCellEventTrap_42_1=sCellEventTrap_42_1, mngmtAgentTrap_2030=mngmtAgentTrap_2030, mngmtAgentTrap_3013=mngmtAgentTrap_3013, mngmtAgentTrap_8067=mngmtAgentTrap_8067, mngmtAgentTrap_2080=mngmtAgentTrap_2080, mngmtAgentTrap_9009=mngmtAgentTrap_9009, mngmtAgentTrap_9030=mngmtAgentTrap_9030, mngmtAgentTrap_10015=mngmtAgentTrap_10015, mngmtAgentTrap_16005=mngmtAgentTrap_16005, mngmtAgentTrap_17004=mngmtAgentTrap_17004, mngmtAgentTrap_27013=mngmtAgentTrap_27013, sCellEventTrap_d_72=sCellEventTrap_d_72, mngmtAgentTrap_101=mngmtAgentTrap_101, mngmtAgentTrap_16020=mngmtAgentTrap_16020, sCellEventTrap_6_4=sCellEventTrap_6_4, shelfElementType=shelfElementType, shelfStatusTable=shelfStatusTable, sCellEventTrap_9_d=sCellEventTrap_9_d, sCellEventTrap_6_e=sCellEventTrap_6_e, mngmtAgentTrap_2067=mngmtAgentTrap_2067, mngmtAgentTrap_12002=mngmtAgentTrap_12002, mngmtAgentTrap_37=mngmtAgentTrap_37, mngmtAgentTrap_16019=mngmtAgentTrap_16019, mngmtAgentTrap_17007=mngmtAgentTrap_17007, mngmtAgentTrap_4040=mngmtAgentTrap_4040, mngmtAgentTrap_86=mngmtAgentTrap_86, sCellEventTrap_3_1=sCellEventTrap_3_1, sCellEventTrap_4_2=sCellEventTrap_4_2, mngmtAgentTrap_4=mngmtAgentTrap_4, mngmtAgentTrap_6004=mngmtAgentTrap_6004, mngmtAgentTrap_3083=mngmtAgentTrap_3083, mngmtAgentTrap_8011=mngmtAgentTrap_8011, mngmtAgentTrap_25009=mngmtAgentTrap_25009, mngmtAgentTrap_8040=mngmtAgentTrap_8040, mngmtAgentTrap_20=mngmtAgentTrap_20, mngmtAgentTrap_13018=mngmtAgentTrap_13018, mngmtAgentTrap_80=mngmtAgentTrap_80, mngmtAgentTrap_6006=mngmtAgentTrap_6006, sCellEventTrap_6_3b=sCellEventTrap_6_3b, mngmtAgentTrap_97=mngmtAgentTrap_97, mngmtAgentTrap_3007=mngmtAgentTrap_3007, mngmtAgentTrap_9003=mngmtAgentTrap_9003, mngmtAgentTrap_18041=mngmtAgentTrap_18041, mngmtAgentTrap_20001=mngmtAgentTrap_20001, mngmtAgentTrap_16010=mngmtAgentTrap_16010, sCellEventTrap_7_7=sCellEventTrap_7_7, mngmtAgentTrap_69=mngmtAgentTrap_69, mngmtAgentTrap_25007=mngmtAgentTrap_25007, sCellEventTrap_6_35=sCellEventTrap_6_35, mngmtAgentTrap_3059=mngmtAgentTrap_3059, sCellEventTrap_9_78=sCellEventTrap_9_78, mngmtAgentTrap_2099=mngmtAgentTrap_2099, sCellEventTrap_7_5=sCellEventTrap_7_5, mngmtAgentTrap_1005=mngmtAgentTrap_1005, mngmtAgentTrap_11=mngmtAgentTrap_11, mngmtAgentTrap_3022=mngmtAgentTrap_3022, mngmtAgentTrap_32=mngmtAgentTrap_32, mngmtAgentTrap_3004=mngmtAgentTrap_3004, mngmtAgentTrap_8027=mngmtAgentTrap_8027, mngmtAgentTrap_65=mngmtAgentTrap_65, mngmtAgentTrap_2061=mngmtAgentTrap_2061, mngmtAgentTrap_20004=mngmtAgentTrap_20004, sCellEventTrap_d_6f=sCellEventTrap_d_6f, mngmtAgentTrap_16034=mngmtAgentTrap_16034, mngmtAgentTrap_18059=mngmtAgentTrap_18059, mngmtAgentTrap_3064=mngmtAgentTrap_3064, mngmtAgentTrap_9034=mngmtAgentTrap_9034, mngmtAgentTrap_8086=mngmtAgentTrap_8086, sCellEventTrap_9_6d=sCellEventTrap_9_6d, mngmtAgentTrap_27037=mngmtAgentTrap_27037, mngmtAgentTrap_41=mngmtAgentTrap_41, mngmtAgentTrap_18007=mngmtAgentTrap_18007, sCellEventTrap_6_2=sCellEventTrap_6_2, sCellEventTrap_9_d5=sCellEventTrap_9_d5, sCellEventTrap_d_5b=sCellEventTrap_d_5b, mngmtAgentTrap_2058=mngmtAgentTrap_2058, mngmtAgentTrap_2088=mngmtAgentTrap_2088, mngmtAgentTrap_5002=mngmtAgentTrap_5002, mngmtAgentTrap_4012=mngmtAgentTrap_4012, mngmtAgentTrap_27025=mngmtAgentTrap_27025, mngmtAgentTrap_8085=mngmtAgentTrap_8085, mngmtAgentTrap_3068=mngmtAgentTrap_3068, mngmtAgentTrap_5003=mngmtAgentTrap_5003, mngmtAgentTrap_27038=mngmtAgentTrap_27038, mngmtAgentTrap_21=mngmtAgentTrap_21, mngmtAgentTrap_2047=mngmtAgentTrap_2047, sCellEventTrap_83_0=sCellEventTrap_83_0, agentEventTimeDate=agentEventTimeDate, sCellEventTrap_6_13=sCellEventTrap_6_13, mngmtAgentTrap_3019=mngmtAgentTrap_3019, mngmtAgentTrap_16031=mngmtAgentTrap_16031, mngmtAgentTrap_75=mngmtAgentTrap_75, mngmtAgentTrap_25013=mngmtAgentTrap_25013, mngmtAgentTrap_18003=mngmtAgentTrap_18003, mngmtAgentTrap_3060=mngmtAgentTrap_3060, mngmtAgentTrap_27032=mngmtAgentTrap_27032, mngmtAgentTrap_107=mngmtAgentTrap_107, sCellEventTrap_9_33=sCellEventTrap_9_33, sCellEventTrap_9_e=sCellEventTrap_9_e, mngmtAgentTrap_21010=mngmtAgentTrap_21010, mngmtAgentTrap_127=mngmtAgentTrap_127, mngmtAgentTrap_12001=mngmtAgentTrap_12001, mngmtAgentTrap_16036=mngmtAgentTrap_16036, mngmtAgentTrap_6031=mngmtAgentTrap_6031, mngmtAgentTrap_10022=mngmtAgentTrap_10022, sCellEventTrap_6_7=sCellEventTrap_6_7, mngmtAgentTrap_4043=mngmtAgentTrap_4043, sCellEventTrap_9_1f=sCellEventTrap_9_1f, mngmtAgentTrap_3070=mngmtAgentTrap_3070, mngmtAgentTrap_9033=mngmtAgentTrap_9033, mngmtAgentTrap_10020=mngmtAgentTrap_10020, mngmtAgentTrap_27029=mngmtAgentTrap_27029, sCellEventTrap_9_3d=sCellEventTrap_9_3d, sCellEventTrap_9_66=sCellEventTrap_9_66, hostStatusTable=hostStatusTable, mngmtAgentTrap_102=mngmtAgentTrap_102, mngmtAgentTrap_13019=mngmtAgentTrap_13019, mngmtAgentTrap_3047=mngmtAgentTrap_3047, mngmtAgentTrap_3094=mngmtAgentTrap_3094, sCellEventTrap_d_5f=sCellEventTrap_d_5f, mngmtAgentTrap_27021=mngmtAgentTrap_27021, mngmtAgentTrap_1001=mngmtAgentTrap_1001, compaq=compaq, mngmtAgentTrap_3029=mngmtAgentTrap_3029, mngmtAgentTrap_5007=mngmtAgentTrap_5007, sCellEventTrap_3_2=sCellEventTrap_3_2, sCellEventTrap_9_4=sCellEventTrap_9_4, mngmtAgentTrap_15003=mngmtAgentTrap_15003, mngmtAgentTrap_6032=mngmtAgentTrap_6032, mngmtAgentTrap_18034=mngmtAgentTrap_18034, mngmtAgentTrap_18028=mngmtAgentTrap_18028, mngmtAgentTrap_26010=mngmtAgentTrap_26010, mngmtAgentTrap_5004=mngmtAgentTrap_5004, sCellEventTrap_6_20=sCellEventTrap_6_20, mngmtAgentTrap_50=mngmtAgentTrap_50, mngmtAgentTrap_2098=mngmtAgentTrap_2098, mngmtAgentTrap_4007=mngmtAgentTrap_4007, mngmtAgentTrap_9023=mngmtAgentTrap_9023, hostUUID=hostUUID, mngmtAgentTrap_10040=mngmtAgentTrap_10040, mngmtAgentTrap_25002=mngmtAgentTrap_25002, mngmtAgentTrap_18065=mngmtAgentTrap_18065, sCellEventTrap_9_cf=sCellEventTrap_9_cf, sCellEventTrap_9_74=sCellEventTrap_9_74, mngmtAgentTrap_46=mngmtAgentTrap_46, mngmtAgentTrap_8063=mngmtAgentTrap_8063, sCellEventTrap_4_7=sCellEventTrap_4_7, sCellEventTrap_6_3=sCellEventTrap_6_3, sCellEventTrap_6_18=sCellEventTrap_6_18, mngmtAgentTrap_36=mngmtAgentTrap_36, mngmtAgentTrap_3015=mngmtAgentTrap_3015, mngmtAgentTrap_4048=mngmtAgentTrap_4048, sCellEventTrap_9_17=sCellEventTrap_9_17, mngmtAgentTrap_16039=mngmtAgentTrap_16039, mngmtAgentTrap_2062=mngmtAgentTrap_2062, mngmtAgentTrap_59=mngmtAgentTrap_59, mngmtAgentTrap_4023=mngmtAgentTrap_4023, mngmtAgentTrap_10027=mngmtAgentTrap_10027, sCellEventTrap_9_46=sCellEventTrap_9_46, sCellEventTrap_9_ce=sCellEventTrap_9_ce, mngmtAgentTrap_27019=mngmtAgentTrap_27019, mngmtAgentTrap_27026=mngmtAgentTrap_27026, mngmtAgentTrap_87=mngmtAgentTrap_87, sCellEventTrap_6_a=sCellEventTrap_6_a, sCellEventTrap_6_37=sCellEventTrap_6_37, sCellEventTrap_c_12=sCellEventTrap_c_12, hostEntryIndex=hostEntryIndex, sCellEventTrap_9_26=sCellEventTrap_9_26, mngmtAgentTrap_18045=mngmtAgentTrap_18045, mngmtAgentTrap_4059=mngmtAgentTrap_4059, mngmtAgentTrap_15005=mngmtAgentTrap_15005, sCellEventTrap_6_3c=sCellEventTrap_6_3c, nscStatusTable=nscStatusTable, mngmtAgentTrap_124=mngmtAgentTrap_124, sCellEventTrap_6_c=sCellEventTrap_6_c, sCellEventTrap_9_8=sCellEventTrap_9_8, mngmtAgentTrap_18039=mngmtAgentTrap_18039, sCellEventTrap_9_d1=sCellEventTrap_9_d1, mngmtAgentTrap_9018=mngmtAgentTrap_9018, sCellEventTrap_c_0=sCellEventTrap_c_0, mngmtAgentTrap_8007=mngmtAgentTrap_8007, mngmtAgentTrap_21017=mngmtAgentTrap_21017, sCellEventTrap_6_3e=sCellEventTrap_6_3e, sCellEventTrap_9_1c=sCellEventTrap_9_1c, mngmtAgentTrap_5015=mngmtAgentTrap_5015, mngmtAgentTrap_20016=mngmtAgentTrap_20016, mngmtAgentTrap_20017=mngmtAgentTrap_20017, scellTotal=scellTotal, mngmtAgentTrap_84=mngmtAgentTrap_84, mngmtAgentTrap_8075=mngmtAgentTrap_8075, mngmtAgentTrap_8031=mngmtAgentTrap_8031, mngmtAgentTrap_10036=mngmtAgentTrap_10036, sCellEventTrap_42_5=sCellEventTrap_42_5, mngmtAgentTrap_13012=mngmtAgentTrap_13012, mngmtAgentTrap_6002=mngmtAgentTrap_6002, sCellEventTrap_d_4b=sCellEventTrap_d_4b, mngmtAgentTrap_21002=mngmtAgentTrap_21002, mngmtAgentTrap_27017=mngmtAgentTrap_27017, mngmtAgentTrap_22001=mngmtAgentTrap_22001, mngmtAgentTrap_27040=mngmtAgentTrap_27040)
mibBuilder.exportSymbols('CPQHSV110V3-MIB', sCellEventTrap_9_3e=sCellEventTrap_9_3e, mngmtAgentTrap_18075=mngmtAgentTrap_18075, cpqHSV=cpqHSV, sCellEventTrap_6_38=sCellEventTrap_6_38, sCellEventTrap_42_4=sCellEventTrap_42_4, mngmtAgentTrap_16018=mngmtAgentTrap_16018, mngmtAgentTrap_13=mngmtAgentTrap_13, mngmtAgentTrap_20013=mngmtAgentTrap_20013, mngmtAgentTrap_2001=mngmtAgentTrap_2001, mngmtAgentTrap_8029=mngmtAgentTrap_8029, sCellEventTrap_9_d4=sCellEventTrap_9_d4, sCellEventTrap_6_25=sCellEventTrap_6_25, sCellEventTrap_6_15=sCellEventTrap_6_15, mngmtAgentTrap_4047=mngmtAgentTrap_4047, shelfEntry=shelfEntry, mngmtAgentTrap_4028=mngmtAgentTrap_4028, mngmtAgentTrap_9016=mngmtAgentTrap_9016, sCellEventTrap_d_4=sCellEventTrap_d_4, sCellEventTrap_83_3=sCellEventTrap_83_3, mngmtAgentTrap_8060=mngmtAgentTrap_8060, mngmtAgentTrap_47=mngmtAgentTrap_47, mngmtAgentTrap_2059=mngmtAgentTrap_2059, mngmtAgentTrap_21003=mngmtAgentTrap_21003, mngmtAgentTrap_27009=mngmtAgentTrap_27009, scellCAC=scellCAC, mngmtAgentTrap_9036=mngmtAgentTrap_9036, mngmtAgentTrap_8005=mngmtAgentTrap_8005, sCellEventTrap_9_21=sCellEventTrap_9_21, mngmtAgentTrap_3084=mngmtAgentTrap_3084, mngmtAgentTrap_3039=mngmtAgentTrap_3039, mngmtAgentTrap_2004=mngmtAgentTrap_2004, mngmtAgentTrap_6020=mngmtAgentTrap_6020, mngmtAgentTrap_8042=mngmtAgentTrap_8042, sCellEventTrap_d_d8=sCellEventTrap_d_d8, mngmtAgentTrap_20018=mngmtAgentTrap_20018, mngmtAgentTrap_27003=mngmtAgentTrap_27003, mngmtAgentTrap_27033=mngmtAgentTrap_27033, mngmtAgentTrap_5017=mngmtAgentTrap_5017, sCellEventTrap_c_f=sCellEventTrap_c_f, mngmtAgentTrap_20002=mngmtAgentTrap_20002, sCellEventTrap_4_e=sCellEventTrap_4_e, sCellEventTrap_9_15=sCellEventTrap_9_15, mngmtAgentTrap_3058=mngmtAgentTrap_3058, mngmtAgentTrap_2060=mngmtAgentTrap_2060, mngmtAgentTrap_3056=mngmtAgentTrap_3056, mngmtAgentTrap_8083=mngmtAgentTrap_8083, mngmtAgentTrap_17003=mngmtAgentTrap_17003, mngmtAgentTrap_92=mngmtAgentTrap_92, mngmtAgentTrap_98=mngmtAgentTrap_98, mngmtAgentTrap_23003=mngmtAgentTrap_23003, mngmtAgentTrap_25015=mngmtAgentTrap_25015, scellStatus=scellStatus, mngmtAgentTrap_3054=mngmtAgentTrap_3054, mngmtAgentTrap_4029=mngmtAgentTrap_4029, sCellEventTrap_9_3=sCellEventTrap_9_3, mngmtAgentTrap_11004=mngmtAgentTrap_11004, sCellEventTrap_6_0=sCellEventTrap_6_0, mngmtAgentTrap_2076=mngmtAgentTrap_2076, sCellEventTrap_9_c9=sCellEventTrap_9_c9, mngmtAgentTrap_1000=mngmtAgentTrap_1000, shelfElementNum=shelfElementNum, mngmtAgentTrap_29=mngmtAgentTrap_29, mngmtAgentTrap_8012=mngmtAgentTrap_8012, mngmtAgentTrap_27043=mngmtAgentTrap_27043, mngmtAgentTrap_114=mngmtAgentTrap_114, mngmtAgentTrap_2049=mngmtAgentTrap_2049, mngmtAgentTrap_54=mngmtAgentTrap_54, mngmtAgentTrap_27015=mngmtAgentTrap_27015, sCellEventTrap_c_15=sCellEventTrap_c_15, sCellEventTrap_9_31=sCellEventTrap_9_31, mngmtAgentTrap_22=mngmtAgentTrap_22, mngmtAgentTrap_27001=mngmtAgentTrap_27001, mngmtAgentTrap_10006=mngmtAgentTrap_10006, mngmtAgentTrap_14003=mngmtAgentTrap_14003, mngmtAgentTrap_18024=mngmtAgentTrap_18024, mngmtAgentTrap_49=mngmtAgentTrap_49, nscEntry=nscEntry, sCellEventTrap_9_5=sCellEventTrap_9_5, sCellEventTrap_42_0=sCellEventTrap_42_0, mngmtAgentTrap_72=mngmtAgentTrap_72, mngmtAgentTrap_10001=mngmtAgentTrap_10001, mngmtAgentTrap_18009=mngmtAgentTrap_18009, mngmtAgentTrap_2064=mngmtAgentTrap_2064, mngmtAgentTrap_4033=mngmtAgentTrap_4033, mngmtAgentTrap_10039=mngmtAgentTrap_10039, mngmtAgentTrap_3035=mngmtAgentTrap_3035, mngmtAgentTrap_8002=mngmtAgentTrap_8002, mngmtAgentTrap_17016=mngmtAgentTrap_17016, sCellEventTrap_d_d9=sCellEventTrap_d_d9, sCellEventTrap_d_1=sCellEventTrap_d_1, mngmtAgentTrap_9004=mngmtAgentTrap_9004, mngmtAgentTrap_27030=mngmtAgentTrap_27030, scellNameDateTime=scellNameDateTime, mngmtAgentTrap_3078=mngmtAgentTrap_3078, mngmtAgentTrap_18006=mngmtAgentTrap_18006, sCellEventTrap_9_12=sCellEventTrap_9_12, mngmtAgentTrap_8077=mngmtAgentTrap_8077, sCellEventTrap_9_cb=sCellEventTrap_9_cb, sCellEventTrap_4_9=sCellEventTrap_4_9, mngmtAgentTrap_129=mngmtAgentTrap_129, mngmtAgentTrap_2052=mngmtAgentTrap_2052, mngmtAgentTrap_4054=mngmtAgentTrap_4054, mngmtAgentTrap_10021=mngmtAgentTrap_10021, mngmtAgentTrap_16040=mngmtAgentTrap_16040, mngmtAgentTrap_3075=mngmtAgentTrap_3075, mngmtAgentTrap_96=mngmtAgentTrap_96, mngmtAgentTrap_18050=mngmtAgentTrap_18050, mngmtAgentTrap_25008=mngmtAgentTrap_25008, mngmtAgentTrap_3001=mngmtAgentTrap_3001, mngmtAgentTrap_18051=mngmtAgentTrap_18051, sCellEventTrap_9_d2=sCellEventTrap_9_d2, mngmtAgentTrap_8055=mngmtAgentTrap_8055, sCellEventTrap_9_77=sCellEventTrap_9_77, mngmtAgentTrap_8073=mngmtAgentTrap_8073, sCellEventTrap_c_6=sCellEventTrap_c_6, shelfEntryIndex=shelfEntryIndex, scell=scell, sCellEventTrap_9_70=sCellEventTrap_9_70, mngmtAgentTrap_91=mngmtAgentTrap_91, mngmtAgentTrap_5013=mngmtAgentTrap_5013, mngmtAgentTrap_10026=mngmtAgentTrap_10026, mngmtAgentTrap_10044=mngmtAgentTrap_10044, shelfStatus=shelfStatus, mngmtAgentTrap_14012=mngmtAgentTrap_14012, mngmtAgentTrap_64=mngmtAgentTrap_64, mngmtAgentTrap_67=mngmtAgentTrap_67, mngmtAgentTrap_3038=mngmtAgentTrap_3038, mngmtAgentTrap_4018=mngmtAgentTrap_4018, mngmtAgentTrap_20022=mngmtAgentTrap_20022, mngmtAgentTrap_26012=mngmtAgentTrap_26012, mngmtAgentTrap_27008=mngmtAgentTrap_27008, sCellEventTrap_4_1=sCellEventTrap_4_1, mngmtAgentTrap_12005=mngmtAgentTrap_12005, mngmtAgentTrap_2=mngmtAgentTrap_2, mngmtAgentTrap_112=mngmtAgentTrap_112, mngmtAgentTrap_8008=mngmtAgentTrap_8008) |
class Solution:
def toGoatLatin(self, S: str) -> str:
W = S.split(" ")
out = ''
for i, s in enumerate(W):
if s[0].lower() in ['a', 'e', 'i', 'o', 'u']:
s = s + "ma"
else:
s = s[1:] + s[0]
s = s + "ma"
while(i>=0):
s = s + 'a'
i = i-1
out = out + s + " "
return out[0:len(out)-1] | class Solution:
def to_goat_latin(self, S: str) -> str:
w = S.split(' ')
out = ''
for (i, s) in enumerate(W):
if s[0].lower() in ['a', 'e', 'i', 'o', 'u']:
s = s + 'ma'
else:
s = s[1:] + s[0]
s = s + 'ma'
while i >= 0:
s = s + 'a'
i = i - 1
out = out + s + ' '
return out[0:len(out) - 1] |
current_max = 0 # x <= 1
stack = []
queries = int(input().strip())
for _ in range(queries):
query = input().strip().split()
if query[0] == '1':
val = int(query[1])
current_max = max(val, stack[-1][1]) if stack else val
stack.append((val, current_max),)
elif query[0] == '2':
stack.pop()
current_max = stack[-1][1] if stack else 0
elif query[0] == '3':
print(current_max)
# cat solution_2_input_1.txt | python3 solution_2.txt
# cat solution_2_input_2.txt | python3 solution_2.txt
| current_max = 0
stack = []
queries = int(input().strip())
for _ in range(queries):
query = input().strip().split()
if query[0] == '1':
val = int(query[1])
current_max = max(val, stack[-1][1]) if stack else val
stack.append((val, current_max))
elif query[0] == '2':
stack.pop()
current_max = stack[-1][1] if stack else 0
elif query[0] == '3':
print(current_max) |
# sqlite header
def sqliteTest(filePath, file):
file.seek(0)
header = file.read(13)
return header == b'SQLite format'
# bplist header
def bplistTest(filePath, file):
# result = filePath[-6:] == '.plist'
# if result:
file.seek(0)
header = file.read(8)
result = header == b'bplist00'
return result
def xmlTest(filePath, file):
return filePath[-4:] == '.xml'
def wazeLogTest(filePath, file):
return filePath[-12:] == 'waze_log.txt'
def checkAll(filePath, file):
if sqliteTest(filePath, file) or bplistTest(filePath, file) or xmlTest(filePath, file) or wazeLogTest(filePath, file):
return True
return False | def sqlite_test(filePath, file):
file.seek(0)
header = file.read(13)
return header == b'SQLite format'
def bplist_test(filePath, file):
file.seek(0)
header = file.read(8)
result = header == b'bplist00'
return result
def xml_test(filePath, file):
return filePath[-4:] == '.xml'
def waze_log_test(filePath, file):
return filePath[-12:] == 'waze_log.txt'
def check_all(filePath, file):
if sqlite_test(filePath, file) or bplist_test(filePath, file) or xml_test(filePath, file) or waze_log_test(filePath, file):
return True
return False |
def calc(x, y):
return x * y
# Display a welcome message for the program.
print("\nWelcome to the fiber optic calculator 3000!\n")
# Get the company name from the user.
prompt1 = "What is the company's name for the order?\n"
# Get the number of feet of fiber optic to be installed from the user.
prompt2 = "How many feet are they looking to buy?\n"
# Set up variables
price = 0.87
company_name = ""
feet = ""
# Check the input company_name
bad_input = True
while bad_input:
company_name = str(input(prompt1))
if not company_name:
print("\nYou didn't type anything.\n")
else:
bad_input = False
# Check the input feet
bad_input = True
while bad_input:
try:
feet = float(input(prompt2))
bad_input = False
except ValueError:
print("\nYour input didn't seem right, try again.\n")
# Multiply the total cost as the number of feet times $0.87.
cost = calc(price, feet)
# Display the calculated information and company name.
print(
f"\nThe company {company_name} wishes to buy {feet} feet of fiber optic cable. This will cost ${cost}.\n"
)
| def calc(x, y):
return x * y
print('\nWelcome to the fiber optic calculator 3000!\n')
prompt1 = "What is the company's name for the order?\n"
prompt2 = 'How many feet are they looking to buy?\n'
price = 0.87
company_name = ''
feet = ''
bad_input = True
while bad_input:
company_name = str(input(prompt1))
if not company_name:
print("\nYou didn't type anything.\n")
else:
bad_input = False
bad_input = True
while bad_input:
try:
feet = float(input(prompt2))
bad_input = False
except ValueError:
print("\nYour input didn't seem right, try again.\n")
cost = calc(price, feet)
print(f'\nThe company {company_name} wishes to buy {feet} feet of fiber optic cable. This will cost ${cost}.\n') |
class Casa:
def __init__(self, paredes):
self.__paredes = paredes
def paredes(self):
return self.__paredes
def superficie_cristal(self):
superficie = 0
for pared in self.paredes():
superficie += pared.superficie_cristal()
return superficie | class Casa:
def __init__(self, paredes):
self.__paredes = paredes
def paredes(self):
return self.__paredes
def superficie_cristal(self):
superficie = 0
for pared in self.paredes():
superficie += pared.superficie_cristal()
return superficie |
{
"targets": [
{
"target_name": "test_napi_arguments",
"sources": [ "test_napi_arguments.c" ]
},
{
"target_name": "test_napi_array",
"sources": [ "test_napi_array.c" ]
},
{
"target_name": "test_napi_async",
"sources": [ "test_napi_async.c" ]
},
{
"target_name": "test_napi_buffer",
"sources": [ "test_napi_buffer.c" ]
},
{
"target_name": "test_napi_construct",
"sources": [ "test_napi_construct.c" ]
},
{
"target_name": "test_napi_conversions",
"sources": [ "test_napi_conversions.c" ]
},
{
"target_name": "test_napi_env_compare",
"sources": [ "test_napi_env_compare.c" ]
},
{
"target_name": "test_napi_env_store",
"sources": [ "test_napi_env_store.c" ]
},
{
"target_name": "test_napi_error_handling",
"sources": [ "test_napi_error_handling.c" ]
},
{
"target_name": "test_napi_general",
"sources": [ "test_napi_general.c" ]
},
{
"target_name": "test_napi_make_callback",
"sources": [ "test_napi_make_callback.c" ]
},
{
"target_name": "test_napi_object_wrap",
"sources": [ "test_napi_object_wrap.c" ]
},
{
"target_name": "test_napi_handle_scope",
"sources": [ "test_napi_handle_scope.c" ]
},
{
"target_name": "test_napi_promise",
"sources": [ "test_napi_promise.c" ]
},
{
"target_name": "test_napi_properties",
"sources": [ "test_napi_properties.c" ]
},
{
"target_name": "test_napi_reference",
"sources": [ "test_napi_reference.c" ]
},
{
"target_name": "test_napi_strictequal_and_instanceof",
"sources": [ "test_napi_strictequal_and_instanceof.c" ]
},
{
"target_name": "test_napi_string",
"sources": [ "test_napi_string.c" ]
},
{
"target_name": "test_napi_symbol",
"sources": [ "test_napi_symbol.c" ]
}
]
}
| {'targets': [{'target_name': 'test_napi_arguments', 'sources': ['test_napi_arguments.c']}, {'target_name': 'test_napi_array', 'sources': ['test_napi_array.c']}, {'target_name': 'test_napi_async', 'sources': ['test_napi_async.c']}, {'target_name': 'test_napi_buffer', 'sources': ['test_napi_buffer.c']}, {'target_name': 'test_napi_construct', 'sources': ['test_napi_construct.c']}, {'target_name': 'test_napi_conversions', 'sources': ['test_napi_conversions.c']}, {'target_name': 'test_napi_env_compare', 'sources': ['test_napi_env_compare.c']}, {'target_name': 'test_napi_env_store', 'sources': ['test_napi_env_store.c']}, {'target_name': 'test_napi_error_handling', 'sources': ['test_napi_error_handling.c']}, {'target_name': 'test_napi_general', 'sources': ['test_napi_general.c']}, {'target_name': 'test_napi_make_callback', 'sources': ['test_napi_make_callback.c']}, {'target_name': 'test_napi_object_wrap', 'sources': ['test_napi_object_wrap.c']}, {'target_name': 'test_napi_handle_scope', 'sources': ['test_napi_handle_scope.c']}, {'target_name': 'test_napi_promise', 'sources': ['test_napi_promise.c']}, {'target_name': 'test_napi_properties', 'sources': ['test_napi_properties.c']}, {'target_name': 'test_napi_reference', 'sources': ['test_napi_reference.c']}, {'target_name': 'test_napi_strictequal_and_instanceof', 'sources': ['test_napi_strictequal_and_instanceof.c']}, {'target_name': 'test_napi_string', 'sources': ['test_napi_string.c']}, {'target_name': 'test_napi_symbol', 'sources': ['test_napi_symbol.c']}]} |
#Binary search tree class
#This module includes:
#The Node class implementation to represent the nodes on the tree
#The BST class Which will construct a tree from the Node class
#The testing code
#Node implemented for binary tree use
class Node:
def __init__(self, data):
self.data = data
self.left_child = None
self.right_child = None
#Insert a node into the tree recursively if need be
def insert(self, data):
if data < self.data:
if self.left_child is None:
self.left_child = Node(data)
else:
self.left_child.insert(data)
else:
if self.right_child is None:
self.right_child = Node(data)
else:
self.right_child.insert(data)
#Remove a node from the tree recursively
#In the event of their being a left and right child node attached
#to the node we're removing, we select the smallest smallest number
#from the right childs tree and set that to be the node we just
#removed and then attach other nodes to it
def remove(self, data, parent_node=None):
if data < self.data:
if self.left_child is not None:
self.left_child.remove(data, self)
elif data > self.data:
if self.right_child is not None:
self.right_child.remove(data, self)
else:
if self.left_child and self.right_child:
self.data = self.right_child.get_min()
self.right_child.remove(self.data, self)
elif parent_node.left_child == self:
#Attach branch of tree to the parent node
if self.left_child:
temp_node = self.left_child
else:
temp_node = self.right_child
parent_node.left_child = temp_node
elif parent_node.right_child == self:
#Attach branch of tree to the parent node
if self.left_child:
temp_node = self.left_child
else:
temp_node = self.right_child
parent_node.right_child = temp_node
#Get the data that the node is holding
def get_data(self):
return self.data
#Retrieve the smallest number from the tree recursively
def get_min(self):
if self.left_child is None:
return self.data
else:
return self.left_child.get_min()
#Retrieve the largest number from the tree recursively
def get_max(self):
if self.right_child is None:
return self.data
else:
return self.right_child.get_max()
#Traverse the tree in order (Ascending value)
def traverse_in_order(self):
if self.left_child is not None:
self.left_child.traverse_in_order()
print(self.data)
if self.right_child is not None:
self.right_child.traverse_in_order()
#Binary search tree implementation
class BST:
def __init__(self):
self.root_node = None
#Insert a node into the tree
def insert(self, data):
if self.root_node is None:
self.root_node = Node(data)
else:
self.root_node.insert(data)
#Remove node from the tree
def remove(self, data_to_remove):
if self.root_node:
if self.root_node.get_data() == data_to_remove:
temp_node = Node(None)
temp_node.left_child = self.root_node
self.root_node.remove(data_to_remove, temp_node)
else:
self.root_node.remove(data_to_remove)
#Get the max value from the tree if a root node is set
def get_max(self):
if self.root_node:
return self.root_node.get_max()
#get the minimum value from the tree if a root node is set
def get_min(self):
if self.root_node:
return self.root_node.get_min()
#Traverse the tree in ascending order if a root node is set
def traverse_in_order(self):
if self.root_node:
print('Traversing the tree:')
self.root_node.traverse_in_order()
#Testing area to make sure the Binary search tree works,
#It does!
if __name__ == '__main__':
bst = BST()
bst.insert(12)
bst.insert(10)
bst.insert(-2)
bst.insert(1)
bst.traverse_in_order()
bst.remove(10)
bst.traverse_in_order()
| class Node:
def __init__(self, data):
self.data = data
self.left_child = None
self.right_child = None
def insert(self, data):
if data < self.data:
if self.left_child is None:
self.left_child = node(data)
else:
self.left_child.insert(data)
elif self.right_child is None:
self.right_child = node(data)
else:
self.right_child.insert(data)
def remove(self, data, parent_node=None):
if data < self.data:
if self.left_child is not None:
self.left_child.remove(data, self)
elif data > self.data:
if self.right_child is not None:
self.right_child.remove(data, self)
elif self.left_child and self.right_child:
self.data = self.right_child.get_min()
self.right_child.remove(self.data, self)
elif parent_node.left_child == self:
if self.left_child:
temp_node = self.left_child
else:
temp_node = self.right_child
parent_node.left_child = temp_node
elif parent_node.right_child == self:
if self.left_child:
temp_node = self.left_child
else:
temp_node = self.right_child
parent_node.right_child = temp_node
def get_data(self):
return self.data
def get_min(self):
if self.left_child is None:
return self.data
else:
return self.left_child.get_min()
def get_max(self):
if self.right_child is None:
return self.data
else:
return self.right_child.get_max()
def traverse_in_order(self):
if self.left_child is not None:
self.left_child.traverse_in_order()
print(self.data)
if self.right_child is not None:
self.right_child.traverse_in_order()
class Bst:
def __init__(self):
self.root_node = None
def insert(self, data):
if self.root_node is None:
self.root_node = node(data)
else:
self.root_node.insert(data)
def remove(self, data_to_remove):
if self.root_node:
if self.root_node.get_data() == data_to_remove:
temp_node = node(None)
temp_node.left_child = self.root_node
self.root_node.remove(data_to_remove, temp_node)
else:
self.root_node.remove(data_to_remove)
def get_max(self):
if self.root_node:
return self.root_node.get_max()
def get_min(self):
if self.root_node:
return self.root_node.get_min()
def traverse_in_order(self):
if self.root_node:
print('Traversing the tree:')
self.root_node.traverse_in_order()
if __name__ == '__main__':
bst = bst()
bst.insert(12)
bst.insert(10)
bst.insert(-2)
bst.insert(1)
bst.traverse_in_order()
bst.remove(10)
bst.traverse_in_order() |
#user tablet settings
LEFT_HANDED = False #rotate pen and track 180 if true
# playing with these pressure curves types
PRESSURE_CURVE = False # LINEAR, SOFT, HARD
#soft = sqrt(z); hard = x^2
#false means no additional calcs
FULL_PRESSURE = 1.0 # force needed for full pressure, eg 0.8 pen pressure will give a full stroke
| left_handed = False
pressure_curve = False
full_pressure = 1.0 |
class SinglyLinkedList:
def __init__(self, head):
self.head = head
def __str__(self):
if not self.head:
return "Error: This is an empty list."
sll_list = []
curr = self.head
while curr:
sll_list.append(str(curr.val))
curr = curr.next
return " -> ".join(sll_list)
class Node:
def __init__(self, val):
self.val = val
self.next = None
class DoublyLinkedList:
def __init__(self, head):
self.head = head
def __str__(self):
if not self.head:
return "Error: This is an empty list."
dll_list = []
curr = self.head
while curr:
dll_list.append(str(curr.val))
curr = curr.next
return " <-> ".join(dll_list)
class DNode:
def __init__(self, val):
self.val = val
self.next = None
self.prev = None | class Singlylinkedlist:
def __init__(self, head):
self.head = head
def __str__(self):
if not self.head:
return 'Error: This is an empty list.'
sll_list = []
curr = self.head
while curr:
sll_list.append(str(curr.val))
curr = curr.next
return ' -> '.join(sll_list)
class Node:
def __init__(self, val):
self.val = val
self.next = None
class Doublylinkedlist:
def __init__(self, head):
self.head = head
def __str__(self):
if not self.head:
return 'Error: This is an empty list.'
dll_list = []
curr = self.head
while curr:
dll_list.append(str(curr.val))
curr = curr.next
return ' <-> '.join(dll_list)
class Dnode:
def __init__(self, val):
self.val = val
self.next = None
self.prev = None |
def floodFill(image, sr, sc, newColor):
if image[sr][sc] == newColor: return image
origColor = image[sr][sc]
def rec(r, c):
if not (0 <= r < len(image) and 0 <= c < len(image[0])):
return
if image[r][c] != origColor:
return
image[r][c] = newColor
rec(r+1, c)
rec(r-1, c)
rec(r, c+1)
rec(r, c-1)
rec(sr, sc)
return image
print(floodFill([[1, 1, 1],
[1, 1, 0],
[1, 0, 1]], 1, 1, 2))
# [[2, 2, 2],
# [2, 2, 0],
# [2, 0, 1]])
print(floodFill([[0, 0, 0],
[0, 1, 1]], 1, 1, 1)) | def flood_fill(image, sr, sc, newColor):
if image[sr][sc] == newColor:
return image
orig_color = image[sr][sc]
def rec(r, c):
if not (0 <= r < len(image) and 0 <= c < len(image[0])):
return
if image[r][c] != origColor:
return
image[r][c] = newColor
rec(r + 1, c)
rec(r - 1, c)
rec(r, c + 1)
rec(r, c - 1)
rec(sr, sc)
return image
print(flood_fill([[1, 1, 1], [1, 1, 0], [1, 0, 1]], 1, 1, 2))
print(flood_fill([[0, 0, 0], [0, 1, 1]], 1, 1, 1)) |
def uses_only(word, letters):
for c in "".join(word.split()):
#print c # test
if c not in letters:
return False
return True
print (uses_only("hoe alfalfa", "acefhlo" ))
# Ace, lohf? | def uses_only(word, letters):
for c in ''.join(word.split()):
if c not in letters:
return False
return True
print(uses_only('hoe alfalfa', 'acefhlo')) |
pattern_zero=[0.0, 0.015380859375, 0.0302734375, 0.03125, 0.044677734375, 0.046630859375, 0.05859375, 0.0615234375, 0.0625, 0.072021484375, 0.075927734375, 0.077880859375, 0.0849609375, 0.08984375, 0.0927734375, 0.09375, 0.097412109375, 0.103271484375, 0.107177734375, 0.109130859375, 0.109375, 0.1162109375, 0.120849609375, 0.12109375, 0.1240234375, 0.125, 0.128662109375, 0.1318359375, 0.134521484375, 0.138427734375, 0.140380859375, 0.140625, 0.142333984375, 0.1474609375, 0.152099609375, 0.15234375, 0.1552734375, 0.15625, 0.159912109375, 0.161865234375, 0.1630859375, 0.165771484375, 0.169677734375, 0.1708984375, 0.171630859375, 0.171875, 0.173583984375, 0.1787109375, 0.179443359375, 0.183349609375, 0.18359375, 0.1865234375, 0.1875, 0.191162109375, 0.193115234375, 0.1943359375, 0.195068359375, 0.197021484375, 0.200927734375, 0.2021484375, 0.202880859375, 0.203125, 0.204833984375, 0.208740234375, 0.2099609375, 0.210693359375, 0.214599609375, 0.21484375, 0.2177734375, 0.21875, 0.220458984375, 0.222412109375, 0.224365234375, 0.2255859375, 0.226318359375, 0.228271484375, 0.230224609375, 0.232177734375, 0.2333984375, 0.234130859375, 0.234375, 0.236083984375, 0.238037109375, 0.239990234375, 0.2412109375, 0.241943359375, 0.243896484375, 0.245849609375, 0.24609375, 0.247802734375, 0.2490234375, 0.249755859375, 0.25, 0.251708984375, 0.253662109375, 0.255615234375, 0.2568359375, 0.257568359375, 0.259521484375, 0.261474609375, 0.263427734375, 0.2646484375, 0.265380859375, 0.265625, 0.267333984375, 0.269287109375, 0.271240234375, 0.2724609375, 0.273193359375, 0.275146484375, 0.277099609375, 0.27734375, 0.279052734375, 0.2802734375, 0.281005859375, 0.28125, 0.282958984375, 0.284912109375, 0.286865234375, 0.2880859375, 0.288818359375, 0.290771484375, 0.292724609375, 0.294677734375, 0.2958984375, 0.296630859375, 0.296875, 0.298583984375, 0.300537109375, 0.302490234375, 0.3037109375, 0.304443359375, 0.306396484375, 0.308349609375, 0.30859375, 0.310302734375, 0.3115234375, 0.312255859375, 0.3125, 0.314208984375, 0.316162109375, 0.318115234375, 0.3193359375, 0.320068359375, 0.322021484375, 0.323974609375, 0.325927734375, 0.3271484375, 0.327880859375, 0.328125, 0.329833984375, 0.331787109375, 0.333740234375, 0.3349609375, 0.335693359375, 0.337646484375, 0.339599609375, 0.33984375, 0.341552734375, 0.3427734375, 0.343505859375, 0.34375, 0.345458984375, 0.347412109375, 0.349365234375, 0.3505859375, 0.351318359375, 0.353271484375, 0.355224609375, 0.357177734375, 0.3583984375, 0.359130859375, 0.359375, 0.361083984375, 0.363037109375, 0.364990234375, 0.3662109375, 0.366943359375, 0.368896484375, 0.370849609375, 0.37109375, 0.372802734375, 0.3740234375, 0.374755859375, 0.375, 0.376708984375, 0.378662109375, 0.380615234375, 0.3818359375, 0.382568359375, 0.384521484375, 0.386474609375, 0.388427734375, 0.3896484375, 0.390380859375, 0.390625, 0.392333984375, 0.394287109375, 0.396240234375, 0.3974609375, 0.398193359375, 0.400146484375, 0.402099609375, 0.40234375, 0.404052734375, 0.4052734375, 0.406005859375, 0.40625, 0.407958984375, 0.409912109375, 0.411865234375, 0.4130859375, 0.413818359375, 0.415771484375, 0.417724609375, 0.419677734375, 0.4208984375, 0.421630859375, 0.421875, 0.423583984375, 0.425537109375, 0.427490234375, 0.4287109375, 0.429443359375, 0.431396484375, 0.433349609375, 0.43359375, 0.435302734375, 0.4365234375, 0.437255859375, 0.4375, 0.439208984375, 0.441162109375, 0.443115234375, 0.4443359375, 0.445068359375, 0.447021484375, 0.448974609375, 0.450927734375, 0.4521484375, 0.452880859375, 0.453125, 0.454833984375, 0.456787109375, 0.458740234375, 0.4599609375, 0.460693359375, 0.462646484375, 0.464599609375, 0.46484375, 0.466552734375, 0.4677734375, 0.468505859375, 0.46875, 0.470458984375, 0.472412109375, 0.474365234375, 0.4755859375, 0.476318359375, 0.478271484375, 0.480224609375, 0.482177734375, 0.4833984375, 0.484130859375, 0.484375, 0.486083984375, 0.488037109375, 0.489990234375, 0.4912109375, 0.491943359375, 0.493896484375, 0.495849609375, 0.49609375, 0.497802734375, 0.4990234375, 0.499755859375, 0.5, 0.501708984375, 0.503662109375, 0.505615234375, 0.5068359375, 0.507568359375, 0.509521484375, 0.511474609375, 0.513427734375, 0.5146484375, 0.515380859375, 0.515625, 0.517333984375, 0.519287109375, 0.521240234375, 0.5224609375, 0.523193359375, 0.525146484375, 0.527099609375, 0.52734375, 0.529052734375, 0.5302734375, 0.531005859375, 0.53125, 0.532958984375, 0.534912109375, 0.536865234375, 0.5380859375, 0.538818359375, 0.540771484375, 0.542724609375, 0.544677734375, 0.5458984375, 0.546630859375, 0.546875, 0.548583984375, 0.550537109375, 0.552490234375, 0.5537109375, 0.554443359375, 0.556396484375, 0.558349609375, 0.55859375, 0.560302734375, 0.5615234375, 0.562255859375, 0.5625, 0.564208984375, 0.566162109375, 0.568115234375, 0.5693359375, 0.570068359375, 0.572021484375, 0.573974609375, 0.575927734375, 0.5771484375, 0.577880859375, 0.578125, 0.579833984375, 0.581787109375, 0.583740234375, 0.5849609375, 0.585693359375, 0.587646484375, 0.589599609375, 0.58984375, 0.591552734375, 0.5927734375, 0.593505859375, 0.59375, 0.595458984375, 0.597412109375, 0.599365234375, 0.6005859375, 0.601318359375, 0.603271484375, 0.605224609375, 0.607177734375, 0.6083984375, 0.609130859375, 0.609375, 0.611083984375, 0.613037109375, 0.614990234375, 0.6162109375, 0.616943359375, 0.618896484375, 0.620849609375, 0.62109375, 0.622802734375, 0.6240234375, 0.624755859375, 0.625, 0.626708984375, 0.628662109375, 0.630615234375, 0.6318359375, 0.632568359375, 0.634521484375, 0.636474609375, 0.638427734375, 0.6396484375, 0.640380859375, 0.640625, 0.642333984375, 0.644287109375, 0.646240234375, 0.6474609375, 0.648193359375, 0.650146484375, 0.652099609375, 0.65234375, 0.654052734375, 0.6552734375, 0.656005859375, 0.65625, 0.657958984375, 0.659912109375, 0.661865234375, 0.6630859375, 0.663818359375, 0.665771484375, 0.667724609375, 0.669677734375, 0.6708984375, 0.671630859375, 0.671875, 0.673583984375, 0.675537109375, 0.677490234375, 0.6787109375, 0.679443359375, 0.681396484375, 0.683349609375, 0.68359375, 0.685302734375, 0.6865234375, 0.687255859375, 0.6875, 0.689208984375, 0.691162109375, 0.693115234375, 0.6943359375, 0.695068359375, 0.697021484375, 0.698974609375, 0.700927734375, 0.7021484375, 0.702880859375, 0.703125, 0.704833984375, 0.706787109375, 0.708740234375, 0.7099609375, 0.710693359375, 0.712646484375, 0.714599609375, 0.71484375, 0.716552734375, 0.7177734375, 0.718505859375, 0.71875, 0.720458984375, 0.722412109375, 0.724365234375, 0.7255859375, 0.726318359375, 0.728271484375, 0.730224609375, 0.732177734375, 0.7333984375, 0.734130859375, 0.734375, 0.736083984375, 0.738037109375, 0.739990234375, 0.7412109375, 0.741943359375, 0.743896484375, 0.745849609375, 0.74609375, 0.747802734375, 0.7490234375, 0.749755859375, 0.75, 0.751708984375, 0.753662109375, 0.755615234375, 0.7568359375, 0.757568359375, 0.759521484375, 0.761474609375, 0.763427734375, 0.7646484375, 0.765380859375, 0.765625, 0.767333984375, 0.769287109375, 0.771240234375, 0.7724609375, 0.773193359375, 0.775146484375, 0.777099609375, 0.77734375, 0.779052734375, 0.7802734375, 0.781005859375, 0.78125, 0.782958984375, 0.784912109375, 0.786865234375, 0.7880859375, 0.788818359375, 0.790771484375, 0.792724609375, 0.794677734375, 0.7958984375, 0.796630859375, 0.796875, 0.798583984375, 0.800537109375, 0.802490234375, 0.8037109375, 0.804443359375, 0.806396484375, 0.808349609375, 0.80859375, 0.810302734375, 0.8115234375, 0.812255859375, 0.8125, 0.814208984375, 0.816162109375, 0.818115234375, 0.8193359375, 0.820068359375, 0.822021484375, 0.823974609375, 0.825927734375, 0.8271484375, 0.827880859375, 0.828125, 0.829833984375, 0.831787109375, 0.833740234375, 0.8349609375, 0.835693359375, 0.837646484375, 0.839599609375, 0.83984375, 0.841552734375, 0.8427734375, 0.843505859375, 0.84375, 0.845458984375, 0.847412109375, 0.849365234375, 0.8505859375, 0.851318359375, 0.853271484375, 0.855224609375, 0.857177734375, 0.8583984375, 0.859130859375, 0.859375, 0.861083984375, 0.863037109375, 0.864990234375, 0.8662109375, 0.866943359375, 0.868896484375, 0.870849609375, 0.87109375, 0.872802734375, 0.8740234375, 0.874755859375, 0.875, 0.876708984375, 0.878662109375, 0.880615234375, 0.8818359375, 0.882568359375, 0.884521484375, 0.886474609375, 0.888427734375, 0.8896484375, 0.890380859375, 0.890625, 0.892333984375, 0.894287109375, 0.896240234375, 0.8974609375, 0.898193359375, 0.900146484375, 0.902099609375, 0.90234375, 0.904052734375, 0.9052734375, 0.906005859375, 0.90625, 0.907958984375, 0.909912109375, 0.911865234375, 0.9130859375, 0.913818359375, 0.915771484375, 0.917724609375, 0.919677734375, 0.9208984375, 0.921630859375, 0.921875, 0.923583984375, 0.925537109375, 0.927490234375, 0.9287109375, 0.929443359375, 0.931396484375, 0.933349609375, 0.93359375, 0.935302734375, 0.9365234375, 0.937255859375, 0.9375, 0.939208984375, 0.941162109375, 0.943115234375, 0.9443359375, 0.945068359375, 0.947021484375, 0.948974609375, 0.950927734375, 0.9521484375, 0.952880859375, 0.953125, 0.954833984375, 0.956787109375, 0.958740234375, 0.9599609375, 0.960693359375, 0.962646484375, 0.964599609375, 0.96484375, 0.966552734375, 0.9677734375, 0.968505859375, 0.96875, 0.970458984375, 0.972412109375, 0.974365234375, 0.9755859375, 0.976318359375, 0.978271484375, 0.980224609375, 0.982177734375, 0.9833984375, 0.984130859375, 0.984375, 0.986083984375, 0.988037109375, 0.989990234375, 0.9912109375, 0.991943359375, 0.993896484375, 0.995849609375, 0.99609375, 0.997802734375, 0.9990234375, 0.999755859375]
pattern_odd=[0.0, 0.001708984375, 0.003662109375, 0.005615234375, 0.0068359375, 0.007568359375, 0.009521484375, 0.011474609375, 0.013427734375, 0.0146484375, 0.015380859375, 0.015625, 0.017333984375, 0.019287109375, 0.021240234375, 0.0224609375, 0.023193359375, 0.025146484375, 0.027099609375, 0.02734375, 0.029052734375, 0.0302734375, 0.031005859375, 0.03125, 0.032958984375, 0.034912109375, 0.036865234375, 0.0380859375, 0.038818359375, 0.040771484375, 0.042724609375, 0.044677734375, 0.0458984375, 0.046630859375, 0.046875, 0.048583984375, 0.050537109375, 0.052490234375, 0.0537109375, 0.054443359375, 0.056396484375, 0.058349609375, 0.05859375, 0.060302734375, 0.0615234375, 0.062255859375, 0.0625, 0.064208984375, 0.066162109375, 0.068115234375, 0.0693359375, 0.070068359375, 0.072021484375, 0.073974609375, 0.075927734375, 0.0771484375, 0.077880859375, 0.078125, 0.079833984375, 0.081787109375, 0.083740234375, 0.0849609375, 0.085693359375, 0.087646484375, 0.089599609375, 0.08984375, 0.091552734375, 0.0927734375, 0.093505859375, 0.09375, 0.095458984375, 0.097412109375, 0.099365234375, 0.1005859375, 0.101318359375, 0.103271484375, 0.105224609375, 0.107177734375, 0.1083984375, 0.109130859375, 0.109375, 0.111083984375, 0.113037109375, 0.114990234375, 0.1162109375, 0.116943359375, 0.118896484375, 0.120849609375, 0.12109375, 0.122802734375, 0.1240234375, 0.124755859375, 0.125, 0.126708984375, 0.128662109375, 0.130615234375, 0.1318359375, 0.132568359375, 0.134521484375, 0.136474609375, 0.138427734375, 0.1396484375, 0.140380859375, 0.140625, 0.142333984375, 0.144287109375, 0.146240234375, 0.1474609375, 0.148193359375, 0.150146484375, 0.152099609375, 0.15234375, 0.154052734375, 0.1552734375, 0.156005859375, 0.15625, 0.157958984375, 0.159912109375, 0.161865234375, 0.1630859375, 0.163818359375, 0.165771484375, 0.167724609375, 0.169677734375, 0.1708984375, 0.171630859375, 0.171875, 0.173583984375, 0.175537109375, 0.177490234375, 0.1787109375, 0.179443359375, 0.181396484375, 0.183349609375, 0.18359375, 0.185302734375, 0.1865234375, 0.187255859375, 0.1875, 0.189208984375, 0.191162109375, 0.193115234375, 0.1943359375, 0.195068359375, 0.197021484375, 0.198974609375, 0.200927734375, 0.2021484375, 0.202880859375, 0.203125, 0.204833984375, 0.206787109375, 0.208740234375, 0.2099609375, 0.210693359375, 0.212646484375, 0.214599609375, 0.21484375, 0.216552734375, 0.2177734375, 0.218505859375, 0.21875, 0.220458984375, 0.222412109375, 0.224365234375, 0.2255859375, 0.226318359375, 0.228271484375, 0.230224609375, 0.232177734375, 0.2333984375, 0.234130859375, 0.234375, 0.236083984375, 0.238037109375, 0.239990234375, 0.2412109375, 0.241943359375, 0.243896484375, 0.245849609375, 0.24609375, 0.247802734375, 0.2490234375, 0.249755859375, 0.25, 0.251708984375, 0.253662109375, 0.255615234375, 0.2568359375, 0.257568359375, 0.259521484375, 0.261474609375, 0.263427734375, 0.2646484375, 0.265380859375, 0.265625, 0.267333984375, 0.269287109375, 0.271240234375, 0.2724609375, 0.273193359375, 0.275146484375, 0.277099609375, 0.27734375, 0.279052734375, 0.2802734375, 0.281005859375, 0.28125, 0.282958984375, 0.284912109375, 0.286865234375, 0.2880859375, 0.288818359375, 0.290771484375, 0.292724609375, 0.294677734375, 0.2958984375, 0.296630859375, 0.296875, 0.298583984375, 0.300537109375, 0.302490234375, 0.3037109375, 0.304443359375, 0.306396484375, 0.308349609375, 0.30859375, 0.310302734375, 0.3115234375, 0.312255859375, 0.3125, 0.314208984375, 0.316162109375, 0.318115234375, 0.3193359375, 0.320068359375, 0.322021484375, 0.323974609375, 0.325927734375, 0.3271484375, 0.327880859375, 0.328125, 0.329833984375, 0.331787109375, 0.333740234375, 0.3349609375, 0.335693359375, 0.337646484375, 0.339599609375, 0.33984375, 0.341552734375, 0.3427734375, 0.343505859375, 0.34375, 0.345458984375, 0.347412109375, 0.349365234375, 0.3505859375, 0.351318359375, 0.353271484375, 0.355224609375, 0.357177734375, 0.3583984375, 0.359130859375, 0.359375, 0.361083984375, 0.363037109375, 0.364990234375, 0.3662109375, 0.366943359375, 0.368896484375, 0.370849609375, 0.37109375, 0.372802734375, 0.3740234375, 0.374755859375, 0.375, 0.376708984375, 0.378662109375, 0.380615234375, 0.3818359375, 0.382568359375, 0.384521484375, 0.386474609375, 0.388427734375, 0.3896484375, 0.390380859375, 0.390625, 0.392333984375, 0.394287109375, 0.396240234375, 0.3974609375, 0.398193359375, 0.400146484375, 0.402099609375, 0.40234375, 0.404052734375, 0.4052734375, 0.406005859375, 0.40625, 0.407958984375, 0.409912109375, 0.411865234375, 0.4130859375, 0.413818359375, 0.415771484375, 0.417724609375, 0.419677734375, 0.4208984375, 0.421630859375, 0.421875, 0.423583984375, 0.425537109375, 0.427490234375, 0.4287109375, 0.429443359375, 0.431396484375, 0.433349609375, 0.43359375, 0.435302734375, 0.4365234375, 0.437255859375, 0.4375, 0.439208984375, 0.441162109375, 0.443115234375, 0.4443359375, 0.445068359375, 0.447021484375, 0.448974609375, 0.450927734375, 0.4521484375, 0.452880859375, 0.453125, 0.454833984375, 0.456787109375, 0.458740234375, 0.4599609375, 0.460693359375, 0.462646484375, 0.464599609375, 0.46484375, 0.466552734375, 0.4677734375, 0.468505859375, 0.46875, 0.470458984375, 0.472412109375, 0.474365234375, 0.4755859375, 0.476318359375, 0.478271484375, 0.480224609375, 0.482177734375, 0.4833984375, 0.484130859375, 0.484375, 0.486083984375, 0.488037109375, 0.489990234375, 0.4912109375, 0.491943359375, 0.493896484375, 0.495849609375, 0.49609375, 0.497802734375, 0.4990234375, 0.499755859375, 0.5, 0.501708984375, 0.503662109375, 0.505615234375, 0.5068359375, 0.507568359375, 0.509521484375, 0.511474609375, 0.513427734375, 0.5146484375, 0.515380859375, 0.515625, 0.517333984375, 0.519287109375, 0.521240234375, 0.5224609375, 0.523193359375, 0.525146484375, 0.527099609375, 0.52734375, 0.529052734375, 0.5302734375, 0.531005859375, 0.53125, 0.532958984375, 0.534912109375, 0.536865234375, 0.5380859375, 0.538818359375, 0.540771484375, 0.542724609375, 0.544677734375, 0.5458984375, 0.546630859375, 0.546875, 0.548583984375, 0.550537109375, 0.552490234375, 0.5537109375, 0.554443359375, 0.556396484375, 0.558349609375, 0.55859375, 0.560302734375, 0.5615234375, 0.562255859375, 0.5625, 0.564208984375, 0.566162109375, 0.568115234375, 0.5693359375, 0.570068359375, 0.572021484375, 0.573974609375, 0.575927734375, 0.5771484375, 0.577880859375, 0.578125, 0.579833984375, 0.581787109375, 0.583740234375, 0.5849609375, 0.585693359375, 0.587646484375, 0.589599609375, 0.58984375, 0.591552734375, 0.5927734375, 0.593505859375, 0.59375, 0.595458984375, 0.597412109375, 0.599365234375, 0.6005859375, 0.601318359375, 0.603271484375, 0.605224609375, 0.607177734375, 0.6083984375, 0.609130859375, 0.609375, 0.611083984375, 0.613037109375, 0.614990234375, 0.6162109375, 0.616943359375, 0.618896484375, 0.620849609375, 0.62109375, 0.622802734375, 0.6240234375, 0.624755859375, 0.625, 0.626708984375, 0.628662109375, 0.630615234375, 0.6318359375, 0.632568359375, 0.634521484375, 0.636474609375, 0.638427734375, 0.6396484375, 0.640380859375, 0.640625, 0.642333984375, 0.644287109375, 0.646240234375, 0.6474609375, 0.648193359375, 0.650146484375, 0.652099609375, 0.65234375, 0.654052734375, 0.6552734375, 0.656005859375, 0.65625, 0.657958984375, 0.659912109375, 0.661865234375, 0.6630859375, 0.663818359375, 0.665771484375, 0.667724609375, 0.669677734375, 0.6708984375, 0.671630859375, 0.671875, 0.673583984375, 0.675537109375, 0.677490234375, 0.6787109375, 0.679443359375, 0.681396484375, 0.683349609375, 0.68359375, 0.685302734375, 0.6865234375, 0.687255859375, 0.6875, 0.689208984375, 0.691162109375, 0.693115234375, 0.6943359375, 0.695068359375, 0.697021484375, 0.698974609375, 0.700927734375, 0.7021484375, 0.702880859375, 0.703125, 0.704833984375, 0.706787109375, 0.708740234375, 0.7099609375, 0.710693359375, 0.712646484375, 0.714599609375, 0.71484375, 0.716552734375, 0.7177734375, 0.718505859375, 0.71875, 0.720458984375, 0.722412109375, 0.724365234375, 0.7255859375, 0.726318359375, 0.728271484375, 0.730224609375, 0.732177734375, 0.7333984375, 0.734130859375, 0.734375, 0.736083984375, 0.738037109375, 0.739990234375, 0.7412109375, 0.741943359375, 0.743896484375, 0.745849609375, 0.74609375, 0.747802734375, 0.7490234375, 0.749755859375, 0.75, 0.751708984375, 0.753662109375, 0.755615234375, 0.7568359375, 0.757568359375, 0.759521484375, 0.761474609375, 0.763427734375, 0.7646484375, 0.765380859375, 0.765625, 0.767333984375, 0.769287109375, 0.771240234375, 0.7724609375, 0.773193359375, 0.775146484375, 0.777099609375, 0.77734375, 0.779052734375, 0.7802734375, 0.781005859375, 0.78125, 0.782958984375, 0.784912109375, 0.786865234375, 0.7880859375, 0.788818359375, 0.790771484375, 0.792724609375, 0.794677734375, 0.7958984375, 0.796630859375, 0.796875, 0.798583984375, 0.800537109375, 0.802490234375, 0.8037109375, 0.804443359375, 0.806396484375, 0.808349609375, 0.80859375, 0.810302734375, 0.8115234375, 0.812255859375, 0.8125, 0.814208984375, 0.816162109375, 0.818115234375, 0.8193359375, 0.820068359375, 0.822021484375, 0.823974609375, 0.825927734375, 0.8271484375, 0.827880859375, 0.828125, 0.829833984375, 0.831787109375, 0.833740234375, 0.8349609375, 0.835693359375, 0.837646484375, 0.839599609375, 0.83984375, 0.841552734375, 0.8427734375, 0.843505859375, 0.84375, 0.845458984375, 0.847412109375, 0.849365234375, 0.8505859375, 0.851318359375, 0.853271484375, 0.855224609375, 0.857177734375, 0.8583984375, 0.859130859375, 0.859375, 0.861083984375, 0.863037109375, 0.864990234375, 0.8662109375, 0.866943359375, 0.868896484375, 0.870849609375, 0.87109375, 0.872802734375, 0.8740234375, 0.874755859375, 0.875, 0.876708984375, 0.878662109375, 0.880615234375, 0.8818359375, 0.882568359375, 0.884521484375, 0.886474609375, 0.888427734375, 0.8896484375, 0.890380859375, 0.890625, 0.892333984375, 0.894287109375, 0.896240234375, 0.8974609375, 0.898193359375, 0.900146484375, 0.902099609375, 0.90234375, 0.904052734375, 0.9052734375, 0.906005859375, 0.90625, 0.907958984375, 0.909912109375, 0.911865234375, 0.9130859375, 0.913818359375, 0.915771484375, 0.917724609375, 0.919677734375, 0.9208984375, 0.921630859375, 0.921875, 0.923583984375, 0.925537109375, 0.927490234375, 0.9287109375, 0.929443359375, 0.931396484375, 0.933349609375, 0.93359375, 0.935302734375, 0.9365234375, 0.937255859375, 0.9375, 0.939208984375, 0.941162109375, 0.943115234375, 0.9443359375, 0.945068359375, 0.947021484375, 0.948974609375, 0.950927734375, 0.9521484375, 0.952880859375, 0.953125, 0.954833984375, 0.956787109375, 0.958740234375, 0.9599609375, 0.960693359375, 0.962646484375, 0.964599609375, 0.96484375, 0.966552734375, 0.9677734375, 0.968505859375, 0.96875, 0.970458984375, 0.972412109375, 0.974365234375, 0.9755859375, 0.976318359375, 0.978271484375, 0.980224609375, 0.982177734375, 0.9833984375, 0.984130859375, 0.984375, 0.986083984375, 0.988037109375, 0.989990234375, 0.9912109375, 0.991943359375, 0.993896484375, 0.995849609375, 0.99609375, 0.997802734375, 0.9990234375, 0.999755859375]
pattern_even=[0.0, 0.001708984375, 0.003662109375, 0.005615234375, 0.0068359375, 0.007568359375, 0.009521484375, 0.011474609375, 0.013427734375, 0.0146484375, 0.015380859375, 0.015625, 0.017333984375, 0.019287109375, 0.021240234375, 0.0224609375, 0.023193359375, 0.025146484375, 0.027099609375, 0.02734375, 0.029052734375, 0.0302734375, 0.031005859375, 0.03125, 0.032958984375, 0.034912109375, 0.036865234375, 0.0380859375, 0.038818359375, 0.040771484375, 0.042724609375, 0.044677734375, 0.0458984375, 0.046630859375, 0.046875, 0.048583984375, 0.050537109375, 0.052490234375, 0.0537109375, 0.054443359375, 0.056396484375, 0.058349609375, 0.05859375, 0.060302734375, 0.0615234375, 0.062255859375, 0.0625, 0.064208984375, 0.066162109375, 0.068115234375, 0.0693359375, 0.070068359375, 0.072021484375, 0.073974609375, 0.075927734375, 0.0771484375, 0.077880859375, 0.078125, 0.079833984375, 0.081787109375, 0.083740234375, 0.0849609375, 0.085693359375, 0.087646484375, 0.089599609375, 0.08984375, 0.091552734375, 0.0927734375, 0.093505859375, 0.09375, 0.095458984375, 0.097412109375, 0.099365234375, 0.1005859375, 0.101318359375, 0.103271484375, 0.105224609375, 0.107177734375, 0.1083984375, 0.109130859375, 0.109375, 0.111083984375, 0.113037109375, 0.114990234375, 0.1162109375, 0.116943359375, 0.118896484375, 0.120849609375, 0.12109375, 0.122802734375, 0.1240234375, 0.124755859375, 0.125, 0.126708984375, 0.128662109375, 0.130615234375, 0.1318359375, 0.132568359375, 0.134521484375, 0.136474609375, 0.138427734375, 0.1396484375, 0.140380859375, 0.140625, 0.142333984375, 0.144287109375, 0.146240234375, 0.1474609375, 0.148193359375, 0.150146484375, 0.152099609375, 0.15234375, 0.154052734375, 0.1552734375, 0.156005859375, 0.15625, 0.157958984375, 0.159912109375, 0.161865234375, 0.1630859375, 0.163818359375, 0.165771484375, 0.167724609375, 0.169677734375, 0.1708984375, 0.171630859375, 0.171875, 0.173583984375, 0.175537109375, 0.177490234375, 0.1787109375, 0.179443359375, 0.181396484375, 0.183349609375, 0.18359375, 0.185302734375, 0.1865234375, 0.187255859375, 0.1875, 0.189208984375, 0.191162109375, 0.193115234375, 0.1943359375, 0.195068359375, 0.197021484375, 0.198974609375, 0.200927734375, 0.2021484375, 0.202880859375, 0.203125, 0.204833984375, 0.206787109375, 0.208740234375, 0.2099609375, 0.210693359375, 0.212646484375, 0.214599609375, 0.21484375, 0.216552734375, 0.2177734375, 0.218505859375, 0.21875, 0.220458984375, 0.222412109375, 0.224365234375, 0.2255859375, 0.226318359375, 0.228271484375, 0.230224609375, 0.232177734375, 0.2333984375, 0.234130859375, 0.234375, 0.236083984375, 0.238037109375, 0.239990234375, 0.2412109375, 0.241943359375, 0.243896484375, 0.245849609375, 0.24609375, 0.247802734375, 0.2490234375, 0.249755859375, 0.25, 0.251708984375, 0.253662109375, 0.255615234375, 0.2568359375, 0.257568359375, 0.259521484375, 0.261474609375, 0.263427734375, 0.2646484375, 0.265380859375, 0.265625, 0.267333984375, 0.269287109375, 0.271240234375, 0.2724609375, 0.273193359375, 0.275146484375, 0.277099609375, 0.27734375, 0.279052734375, 0.2802734375, 0.281005859375, 0.28125, 0.282958984375, 0.284912109375, 0.286865234375, 0.2880859375, 0.288818359375, 0.290771484375, 0.292724609375, 0.294677734375, 0.2958984375, 0.296630859375, 0.296875, 0.298583984375, 0.300537109375, 0.302490234375, 0.3037109375, 0.304443359375, 0.306396484375, 0.308349609375, 0.30859375, 0.310302734375, 0.3115234375, 0.312255859375, 0.3125, 0.314208984375, 0.316162109375, 0.318115234375, 0.3193359375, 0.320068359375, 0.322021484375, 0.323974609375, 0.325927734375, 0.3271484375, 0.327880859375, 0.328125, 0.329833984375, 0.331787109375, 0.333740234375, 0.3349609375, 0.335693359375, 0.337646484375, 0.339599609375, 0.33984375, 0.341552734375, 0.3427734375, 0.343505859375, 0.34375, 0.345458984375, 0.347412109375, 0.349365234375, 0.3505859375, 0.351318359375, 0.353271484375, 0.355224609375, 0.357177734375, 0.3583984375, 0.359130859375, 0.359375, 0.361083984375, 0.363037109375, 0.364990234375, 0.3662109375, 0.366943359375, 0.368896484375, 0.370849609375, 0.37109375, 0.372802734375, 0.3740234375, 0.374755859375, 0.375, 0.376708984375, 0.378662109375, 0.380615234375, 0.3818359375, 0.382568359375, 0.384521484375, 0.386474609375, 0.388427734375, 0.3896484375, 0.390380859375, 0.390625, 0.392333984375, 0.394287109375, 0.396240234375, 0.3974609375, 0.398193359375, 0.400146484375, 0.402099609375, 0.40234375, 0.404052734375, 0.4052734375, 0.406005859375, 0.40625, 0.407958984375, 0.409912109375, 0.411865234375, 0.4130859375, 0.413818359375, 0.415771484375, 0.417724609375, 0.419677734375, 0.4208984375, 0.421630859375, 0.421875, 0.423583984375, 0.425537109375, 0.427490234375, 0.4287109375, 0.429443359375, 0.431396484375, 0.433349609375, 0.43359375, 0.435302734375, 0.4365234375, 0.437255859375, 0.4375, 0.439208984375, 0.441162109375, 0.443115234375, 0.4443359375, 0.445068359375, 0.447021484375, 0.448974609375, 0.450927734375, 0.4521484375, 0.452880859375, 0.453125, 0.454833984375, 0.456787109375, 0.458740234375, 0.4599609375, 0.460693359375, 0.462646484375, 0.464599609375, 0.46484375, 0.466552734375, 0.4677734375, 0.468505859375, 0.46875, 0.470458984375, 0.472412109375, 0.474365234375, 0.4755859375, 0.476318359375, 0.478271484375, 0.480224609375, 0.482177734375, 0.4833984375, 0.484130859375, 0.484375, 0.486083984375, 0.488037109375, 0.489990234375, 0.4912109375, 0.491943359375, 0.493896484375, 0.495849609375, 0.49609375, 0.497802734375, 0.4990234375, 0.499755859375, 0.5, 0.501708984375, 0.503662109375, 0.505615234375, 0.5068359375, 0.507568359375, 0.509521484375, 0.511474609375, 0.513427734375, 0.5146484375, 0.515380859375, 0.515625, 0.517333984375, 0.519287109375, 0.521240234375, 0.5224609375, 0.523193359375, 0.525146484375, 0.527099609375, 0.52734375, 0.529052734375, 0.5302734375, 0.531005859375, 0.53125, 0.532958984375, 0.534912109375, 0.536865234375, 0.5380859375, 0.538818359375, 0.540771484375, 0.542724609375, 0.544677734375, 0.5458984375, 0.546630859375, 0.546875, 0.548583984375, 0.550537109375, 0.552490234375, 0.5537109375, 0.554443359375, 0.556396484375, 0.558349609375, 0.55859375, 0.560302734375, 0.5615234375, 0.562255859375, 0.5625, 0.564208984375, 0.566162109375, 0.568115234375, 0.5693359375, 0.570068359375, 0.572021484375, 0.573974609375, 0.575927734375, 0.5771484375, 0.577880859375, 0.578125, 0.579833984375, 0.581787109375, 0.583740234375, 0.5849609375, 0.585693359375, 0.587646484375, 0.589599609375, 0.58984375, 0.591552734375, 0.5927734375, 0.593505859375, 0.59375, 0.595458984375, 0.597412109375, 0.599365234375, 0.6005859375, 0.601318359375, 0.603271484375, 0.605224609375, 0.607177734375, 0.6083984375, 0.609130859375, 0.609375, 0.611083984375, 0.613037109375, 0.614990234375, 0.6162109375, 0.616943359375, 0.618896484375, 0.620849609375, 0.62109375, 0.622802734375, 0.6240234375, 0.624755859375, 0.625, 0.626708984375, 0.628662109375, 0.630615234375, 0.6318359375, 0.632568359375, 0.634521484375, 0.636474609375, 0.638427734375, 0.6396484375, 0.640380859375, 0.640625, 0.642333984375, 0.644287109375, 0.646240234375, 0.6474609375, 0.648193359375, 0.650146484375, 0.652099609375, 0.65234375, 0.654052734375, 0.6552734375, 0.656005859375, 0.65625, 0.657958984375, 0.659912109375, 0.661865234375, 0.6630859375, 0.663818359375, 0.665771484375, 0.667724609375, 0.669677734375, 0.6708984375, 0.671630859375, 0.671875, 0.673583984375, 0.675537109375, 0.677490234375, 0.6787109375, 0.679443359375, 0.681396484375, 0.683349609375, 0.68359375, 0.685302734375, 0.6865234375, 0.687255859375, 0.6875, 0.689208984375, 0.691162109375, 0.693115234375, 0.6943359375, 0.695068359375, 0.697021484375, 0.698974609375, 0.700927734375, 0.7021484375, 0.702880859375, 0.703125, 0.704833984375, 0.706787109375, 0.708740234375, 0.7099609375, 0.710693359375, 0.712646484375, 0.714599609375, 0.71484375, 0.716552734375, 0.7177734375, 0.718505859375, 0.71875, 0.720458984375, 0.722412109375, 0.724365234375, 0.7255859375, 0.726318359375, 0.728271484375, 0.730224609375, 0.732177734375, 0.7333984375, 0.734130859375, 0.734375, 0.736083984375, 0.738037109375, 0.739990234375, 0.7412109375, 0.741943359375, 0.743896484375, 0.745849609375, 0.74609375, 0.747802734375, 0.7490234375, 0.749755859375, 0.75, 0.751708984375, 0.753662109375, 0.755615234375, 0.7568359375, 0.757568359375, 0.759521484375, 0.761474609375, 0.763427734375, 0.7646484375, 0.765380859375, 0.765625, 0.767333984375, 0.769287109375, 0.771240234375, 0.7724609375, 0.773193359375, 0.775146484375, 0.777099609375, 0.77734375, 0.779052734375, 0.7802734375, 0.781005859375, 0.78125, 0.782958984375, 0.784912109375, 0.786865234375, 0.7880859375, 0.788818359375, 0.790771484375, 0.792724609375, 0.794677734375, 0.7958984375, 0.796630859375, 0.796875, 0.798583984375, 0.800537109375, 0.802490234375, 0.8037109375, 0.804443359375, 0.806396484375, 0.808349609375, 0.80859375, 0.810302734375, 0.8115234375, 0.812255859375, 0.8125, 0.814208984375, 0.816162109375, 0.818115234375, 0.8193359375, 0.820068359375, 0.822021484375, 0.823974609375, 0.825927734375, 0.8271484375, 0.827880859375, 0.828125, 0.829833984375, 0.831787109375, 0.833740234375, 0.8349609375, 0.835693359375, 0.837646484375, 0.839599609375, 0.83984375, 0.841552734375, 0.8427734375, 0.843505859375, 0.84375, 0.845458984375, 0.847412109375, 0.849365234375, 0.8505859375, 0.851318359375, 0.853271484375, 0.855224609375, 0.857177734375, 0.8583984375, 0.859130859375, 0.859375, 0.861083984375, 0.863037109375, 0.864990234375, 0.8662109375, 0.866943359375, 0.868896484375, 0.870849609375, 0.87109375, 0.872802734375, 0.8740234375, 0.874755859375, 0.875, 0.876708984375, 0.878662109375, 0.880615234375, 0.8818359375, 0.882568359375, 0.884521484375, 0.886474609375, 0.888427734375, 0.8896484375, 0.890380859375, 0.890625, 0.892333984375, 0.894287109375, 0.896240234375, 0.8974609375, 0.898193359375, 0.900146484375, 0.902099609375, 0.90234375, 0.904052734375, 0.9052734375, 0.906005859375, 0.90625, 0.907958984375, 0.909912109375, 0.911865234375, 0.9130859375, 0.913818359375, 0.915771484375, 0.917724609375, 0.919677734375, 0.9208984375, 0.921630859375, 0.921875, 0.923583984375, 0.925537109375, 0.927490234375, 0.9287109375, 0.929443359375, 0.931396484375, 0.933349609375, 0.93359375, 0.935302734375, 0.9365234375, 0.937255859375, 0.9375, 0.939208984375, 0.941162109375, 0.943115234375, 0.9443359375, 0.945068359375, 0.947021484375, 0.948974609375, 0.950927734375, 0.9521484375, 0.952880859375, 0.953125, 0.954833984375, 0.956787109375, 0.958740234375, 0.9599609375, 0.960693359375, 0.962646484375, 0.964599609375, 0.96484375, 0.966552734375, 0.9677734375, 0.968505859375, 0.96875, 0.970458984375, 0.972412109375, 0.974365234375, 0.9755859375, 0.976318359375, 0.978271484375, 0.980224609375, 0.982177734375, 0.9833984375, 0.984130859375, 0.984375, 0.986083984375, 0.988037109375, 0.989990234375, 0.9912109375, 0.991943359375, 0.993896484375, 0.995849609375, 0.99609375, 0.997802734375, 0.9990234375, 0.999755859375]
averages_even={0.0: [0.25, 0.5, 0.75, 0.0], 0.001708984375: [0.328125, 0.671875], 0.216552734375: [0.453125, 0.546875], 0.974365234375: [0.796875, 0.203125], 0.0068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.029052734375: [0.453125, 0.546875], 0.505615234375: [0.796875, 0.203125], 0.0693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.681396484375: [0.421875, 0.578125], 0.425537109375: [0.390625, 0.609375], 0.732177734375: [0.953125, 0.046875], 0.892333984375: [0.828125, 0.171875], 0.5380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.915771484375: [0.921875, 0.078125], 0.5: [0.5, 0.75, 0.0, 0.25], 0.4208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.800537109375: [0.390625, 0.609375], 0.595458984375: [0.671875, 0.328125], 0.493896484375: [0.421875, 0.578125], 0.052490234375: [0.296875, 0.703125], 0.966552734375: [0.453125, 0.546875], 0.558349609375: [0.859375, 0.140625], 0.007568359375: [0.265625, 0.734375], 0.937255859375: [0.484375, 0.515625], 0.372802734375: [0.453125, 0.546875], 0.148193359375: [0.234375, 0.765625], 0.568115234375: [0.796875, 0.203125], 0.8115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.695068359375: [0.734375, 0.265625], 0.65625: [0.5, 0.75, 0.0, 0.25], 0.251708984375: [0.328125, 0.671875], 0.441162109375: [0.890625, 0.109375], 0.40234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.154052734375: [0.453125, 0.546875], 0.081787109375: [0.390625, 0.609375], 0.650146484375: [0.421875, 0.578125], 0.5693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.4365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.831787109375: [0.390625, 0.609375], 0.320068359375: [0.265625, 0.734375], 0.28125: [0.25, 0.5, 0.75, 0.0], 0.7802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.625: [0.5, 0.75, 0.0, 0.25], 0.054443359375: [0.234375, 0.765625], 0.589599609375: [0.859375, 0.140625], 0.968505859375: [0.484375, 0.515625], 0.388427734375: [0.953125, 0.046875], 0.156005859375: [0.484375, 0.515625], 0.8427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.507568359375: [0.734375, 0.265625], 0.0771484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.267333984375: [0.828125, 0.171875], 0.456787109375: [0.390625, 0.609375], 0.794677734375: [0.953125, 0.046875], 0.085693359375: [0.765625, 0.234375], 0.6005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.53125: [0.5, 0.75, 0.0, 0.25], 0.24609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.4521484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.863037109375: [0.390625, 0.609375], 0.335693359375: [0.765625, 0.234375], 0.296875: [0.375, 0.625, 0.875, 0.125], 0.552490234375: [0.703125, 0.296875], 0.224365234375: [0.796875, 0.203125], 0.620849609375: [0.859375, 0.140625], 0.1240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.999755859375: [0.484375, 0.515625], 0.404052734375: [0.453125, 0.546875], 0.163818359375: [0.265625, 0.734375], 0.759521484375: [0.921875, 0.078125], 0.125: [0.25, 0.5, 0.75, 0.0], 0.8740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.757568359375: [0.734375, 0.265625], 0.71875: [0.5, 0.75, 0.0, 0.25], 0.282958984375: [0.328125, 0.671875], 0.015380859375: [0.984375, 0.015625], 0.825927734375: [0.953125, 0.046875], 0.089599609375: [0.859375, 0.140625], 0.407958984375: [0.328125, 0.671875], 0.4677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.894287109375: [0.390625, 0.609375], 0.351318359375: [0.734375, 0.265625], 0.3125: [0.25, 0.5, 0.75, 0.0], 0.583740234375: [0.703125, 0.296875], 0.665771484375: [0.921875, 0.078125], 0.232177734375: [0.953125, 0.046875], 0.017333984375: [0.828125, 0.171875], 0.652099609375: [0.859375, 0.140625], 0.814208984375: [0.671875, 0.328125], 0.419677734375: [0.953125, 0.046875], 0.171630859375: [0.984375, 0.015625], 0.9052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.509521484375: [0.921875, 0.078125], 0.0849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.009521484375: [0.921875, 0.078125], 0.736083984375: [0.828125, 0.171875], 0.488037109375: [0.390625, 0.609375], 0.857177734375: [0.953125, 0.046875], 0.093505859375: [0.484375, 0.515625], 0.236083984375: [0.828125, 0.171875], 0.6630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.546630859375: [0.984375, 0.015625], 0.4833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.925537109375: [0.390625, 0.609375], 0.208740234375: [0.296875, 0.703125], 0.328125: [0.375, 0.625, 0.875, 0.125], 0.614990234375: [0.296875, 0.703125], 0.048583984375: [0.828125, 0.171875], 0.239990234375: [0.296875, 0.703125], 0.683349609375: [0.859375, 0.140625], 0.572021484375: [0.921875, 0.078125], 0.806396484375: [0.421875, 0.578125], 0.435302734375: [0.453125, 0.546875], 0.179443359375: [0.765625, 0.234375], 0.140625: [0.375, 0.625, 0.875, 0.125], 0.9365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.820068359375: [0.734375, 0.265625], 0.78125: [0.5, 0.75, 0.0, 0.25], 0.314208984375: [0.328125, 0.671875], 0.46484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.097412109375: [0.890625, 0.109375], 0.6943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.577880859375: [0.984375, 0.015625], 0.566162109375: [0.890625, 0.109375], 0.4990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.956787109375: [0.390625, 0.609375], 0.382568359375: [0.734375, 0.265625], 0.34375: [0.5, 0.75, 0.0, 0.25], 0.646240234375: [0.703125, 0.296875], 0.626708984375: [0.328125, 0.671875], 0.247802734375: [0.453125, 0.546875], 0.714599609375: [0.859375, 0.140625], 0.261474609375: [0.359375, 0.640625], 0.02734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.7568359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.450927734375: [0.953125, 0.046875], 0.187255859375: [0.484375, 0.515625], 0.2568359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.0458984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.9677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.511474609375: [0.359375, 0.640625], 0.0927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.329833984375: [0.828125, 0.171875], 0.126708984375: [0.328125, 0.671875], 0.919677734375: [0.953125, 0.046875], 0.101318359375: [0.265625, 0.734375], 0.161865234375: [0.796875, 0.203125], 0.7255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.609130859375: [0.984375, 0.015625], 0.0625: [0.25, 0.5, 0.75, 0.0], 0.579833984375: [0.828125, 0.171875], 0.988037109375: [0.390625, 0.609375], 0.398193359375: [0.765625, 0.234375], 0.359375: [0.375, 0.625, 0.875, 0.125], 0.677490234375: [0.703125, 0.296875], 0.745849609375: [0.859375, 0.140625], 0.277099609375: [0.859375, 0.140625], 0.466552734375: [0.453125, 0.546875], 0.195068359375: [0.265625, 0.734375], 0.15625: [0.25, 0.5, 0.75, 0.0], 0.2724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.822021484375: [0.921875, 0.078125], 0.9990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.882568359375: [0.734375, 0.265625], 0.84375: [0.5, 0.75, 0.0, 0.25], 0.345458984375: [0.328125, 0.671875], 0.134521484375: [0.921875, 0.078125], 0.49609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.950927734375: [0.953125, 0.046875], 0.105224609375: [0.359375, 0.640625], 0.363037109375: [0.390625, 0.609375], 0.640380859375: [0.984375, 0.015625], 0.413818359375: [0.734375, 0.265625], 0.375: [0.5, 0.75, 0.0, 0.25], 0.708740234375: [0.703125, 0.296875], 0.763427734375: [0.953125, 0.046875], 0.777099609375: [0.859375, 0.140625], 0.292724609375: [0.359375, 0.640625], 0.43359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.482177734375: [0.953125, 0.046875], 0.202880859375: [0.984375, 0.015625], 0.790771484375: [0.921875, 0.078125], 0.534912109375: [0.890625, 0.109375], 0.663818359375: [0.734375, 0.265625], 0.513427734375: [0.953125, 0.046875], 0.1005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.361083984375: [0.828125, 0.171875], 0.603271484375: [0.921875, 0.078125], 0.0615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.109130859375: [0.984375, 0.015625], 0.7880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.671630859375: [0.984375, 0.015625], 0.429443359375: [0.765625, 0.234375], 0.390625: [0.375, 0.625, 0.875, 0.125], 0.739990234375: [0.703125, 0.296875], 0.5458984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.808349609375: [0.859375, 0.140625], 0.845458984375: [0.671875, 0.328125], 0.077880859375: [0.984375, 0.015625], 0.861083984375: [0.828125, 0.171875], 0.497802734375: [0.453125, 0.546875], 0.210693359375: [0.234375, 0.765625], 0.3037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.548583984375: [0.828125, 0.171875], 0.945068359375: [0.734375, 0.265625], 0.90625: [0.5, 0.75, 0.0, 0.25], 0.376708984375: [0.328125, 0.671875], 0.150146484375: [0.421875, 0.578125], 0.113037109375: [0.390625, 0.609375], 0.8193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.255615234375: [0.796875, 0.203125], 0.445068359375: [0.265625, 0.734375], 0.40625: [0.5, 0.75, 0.0, 0.25], 0.771240234375: [0.703125, 0.296875], 0.900146484375: [0.421875, 0.578125], 0.5771484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.839599609375: [0.859375, 0.140625], 0.323974609375: [0.359375, 0.640625], 0.913818359375: [0.734375, 0.265625], 0.875: [0.5, 0.75, 0.0, 0.25], 0.218505859375: [0.484375, 0.515625], 0.3193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.597412109375: [0.890625, 0.109375], 0.55859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.515380859375: [0.984375, 0.015625], 0.9375: [0.5, 0.75, 0.0, 0.25], 0.392333984375: [0.828125, 0.171875], 0.157958984375: [0.328125, 0.671875], 0.116943359375: [0.234375, 0.765625], 0.8505859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.734130859375: [0.984375, 0.015625], 0.078125: [0.375, 0.625, 0.875, 0.125], 0.954833984375: [0.828125, 0.171875], 0.634521484375: [0.921875, 0.078125], 0.460693359375: [0.765625, 0.234375], 0.421875: [0.375, 0.625, 0.875, 0.125], 0.802490234375: [0.703125, 0.296875], 0.6083984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.870849609375: [0.859375, 0.140625], 0.339599609375: [0.859375, 0.140625], 0.982177734375: [0.953125, 0.046875], 0.560302734375: [0.453125, 0.546875], 0.09375: [0.25, 0.5, 0.75, 0.0], 0.226318359375: [0.265625, 0.734375], 0.1875: [0.25, 0.5, 0.75, 0.0], 0.021240234375: [0.296875, 0.703125], 0.628662109375: [0.890625, 0.109375], 0.58984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.704833984375: [0.828125, 0.171875], 0.96875: [0.5, 0.75, 0.0, 0.25], 0.165771484375: [0.921875, 0.078125], 0.120849609375: [0.859375, 0.140625], 0.271240234375: [0.296875, 0.703125], 0.169677734375: [0.953125, 0.046875], 0.286865234375: [0.796875, 0.203125], 0.046630859375: [0.984375, 0.015625], 0.476318359375: [0.734375, 0.265625], 0.4375: [0.5, 0.75, 0.0, 0.25], 0.833740234375: [0.703125, 0.296875], 0.6396484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.6875: [0.5, 0.75, 0.0, 0.25], 0.902099609375: [0.859375, 0.140625], 0.355224609375: [0.359375, 0.640625], 0.591552734375: [0.453125, 0.546875], 0.234130859375: [0.984375, 0.015625], 0.3505859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.659912109375: [0.890625, 0.109375], 0.62109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.517333984375: [0.828125, 0.171875], 0.1162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.013427734375: [0.953125, 0.046875], 0.173583984375: [0.828125, 0.171875], 0.767333984375: [0.828125, 0.171875], 0.124755859375: [0.484375, 0.515625], 0.245849609375: [0.859375, 0.140625], 0.9130859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.796630859375: [0.984375, 0.015625], 0.302490234375: [0.296875, 0.703125], 0.491943359375: [0.765625, 0.234375], 0.453125: [0.375, 0.625, 0.875, 0.125], 0.864990234375: [0.703125, 0.296875], 0.6708984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.554443359375: [0.765625, 0.234375], 0.933349609375: [0.859375, 0.140625], 0.370849609375: [0.859375, 0.140625], 0.622802734375: [0.453125, 0.546875], 0.064208984375: [0.328125, 0.671875], 0.005615234375: [0.796875, 0.203125], 0.241943359375: [0.765625, 0.234375], 0.203125: [0.375, 0.625, 0.875, 0.125], 0.3662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.691162109375: [0.890625, 0.109375], 0.65234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.962646484375: [0.421875, 0.578125], 0.439208984375: [0.328125, 0.671875], 0.181396484375: [0.421875, 0.578125], 0.015625: [0.375, 0.625, 0.875, 0.125], 0.796875: [0.375, 0.625, 0.875, 0.125], 0.21484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.9443359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.827880859375: [0.984375, 0.015625], 0.08984375: [0.1875, 0.3125, 0.6875, 0.9375, 0.0625, 0.4375, 0.5625, 0.8125], 0.318115234375: [0.796875, 0.203125], 0.538818359375: [0.734375, 0.265625], 0.6552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.986083984375: [0.828125, 0.171875], 0.46875: [0.5, 0.75, 0.0, 0.25], 0.896240234375: [0.703125, 0.296875], 0.7021484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.585693359375: [0.765625, 0.234375], 0.546875: [0.375, 0.625, 0.875, 0.125], 0.964599609375: [0.859375, 0.140625], 0.386474609375: [0.359375, 0.640625], 0.654052734375: [0.453125, 0.546875], 0.068115234375: [0.796875, 0.203125], 0.618896484375: [0.421875, 0.578125], 0.4052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.019287109375: [0.390625, 0.609375], 0.249755859375: [0.484375, 0.515625], 0.3818359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.722412109375: [0.890625, 0.109375], 0.68359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.265380859375: [0.984375, 0.015625], 0.519287109375: [0.390625, 0.609375], 0.454833984375: [0.828125, 0.171875], 0.189208984375: [0.328125, 0.671875], 0.9755859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.859130859375: [0.984375, 0.015625], 0.333740234375: [0.296875, 0.703125], 0.128662109375: [0.890625, 0.109375], 0.689208984375: [0.671875, 0.328125], 0.484375: [0.375, 0.625, 0.875, 0.125], 0.927490234375: [0.703125, 0.296875], 0.056396484375: [0.421875, 0.578125], 0.7333984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.616943359375: [0.765625, 0.234375], 0.578125: [0.375, 0.625, 0.875, 0.125], 0.995849609375: [0.859375, 0.140625], 0.402099609375: [0.859375, 0.140625], 0.685302734375: [0.453125, 0.546875], 0.072021484375: [0.921875, 0.078125], 0.1083984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.21875: [0.25, 0.5, 0.75, 0.0], 0.3974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.753662109375: [0.890625, 0.109375], 0.71484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.281005859375: [0.484375, 0.515625], 0.470458984375: [0.328125, 0.671875], 0.197021484375: [0.921875, 0.078125], 0.931396484375: [0.421875, 0.578125], 0.304443359375: [0.765625, 0.234375], 0.890380859375: [0.984375, 0.015625], 0.349365234375: [0.796875, 0.203125], 0.702880859375: [0.984375, 0.015625], 0.136474609375: [0.359375, 0.640625], 0.958740234375: [0.703125, 0.296875], 0.7646484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.648193359375: [0.765625, 0.234375], 0.609375: [0.375, 0.625, 0.875, 0.125], 0.829833984375: [0.828125, 0.171875], 0.417724609375: [0.359375, 0.640625], 0.716552734375: [0.453125, 0.546875], 0.075927734375: [0.953125, 0.046875], 0.1318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.265625: [0.375, 0.625, 0.875, 0.125], 0.2958984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.4130859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.784912109375: [0.890625, 0.109375], 0.74609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.2880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.773193359375: [0.765625, 0.234375], 0.521240234375: [0.703125, 0.296875], 0.486083984375: [0.828125, 0.171875], 0.204833984375: [0.828125, 0.171875], 0.542724609375: [0.359375, 0.640625], 0.921630859375: [0.984375, 0.015625], 0.364990234375: [0.296875, 0.703125], 0.144287109375: [0.390625, 0.609375], 0.989990234375: [0.703125, 0.296875], 0.7958984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.679443359375: [0.765625, 0.234375], 0.640625: [0.375, 0.625, 0.875, 0.125], 0.433349609375: [0.859375, 0.140625], 0.747802734375: [0.453125, 0.546875], 0.079833984375: [0.828125, 0.171875], 0.1396484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.5537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.234375: [0.375, 0.625, 0.875, 0.125], 0.027099609375: [0.859375, 0.140625], 0.296630859375: [0.984375, 0.015625], 0.77734375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.312255859375: [0.484375, 0.515625], 0.212646484375: [0.421875, 0.578125], 0.573974609375: [0.359375, 0.640625], 0.5146484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.380615234375: [0.796875, 0.203125], 0.152099609375: [0.859375, 0.140625], 0.472412109375: [0.890625, 0.109375], 0.710693359375: [0.765625, 0.234375], 0.671875: [0.375, 0.625, 0.875, 0.125], 0.259521484375: [0.921875, 0.078125], 0.6318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.448974609375: [0.359375, 0.640625], 0.779052734375: [0.453125, 0.546875], 0.083740234375: [0.296875, 0.703125], 0.1474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.5849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.673583984375: [0.828125, 0.171875], 0.4443359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.847412109375: [0.890625, 0.109375], 0.80859375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.327880859375: [0.984375, 0.015625], 0.853271484375: [0.921875, 0.078125], 0.536865234375: [0.796875, 0.203125], 0.523193359375: [0.765625, 0.234375], 0.976318359375: [0.734375, 0.265625], 0.220458984375: [0.328125, 0.671875], 0.130615234375: [0.796875, 0.203125], 0.556396484375: [0.421875, 0.578125], 0.515625: [0.375, 0.625, 0.875, 0.125], 0.109375: [0.375, 0.625, 0.875, 0.125], 0.396240234375: [0.296875, 0.703125], 0.159912109375: [0.890625, 0.109375], 0.743896484375: [0.421875, 0.578125], 0.8583984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.741943359375: [0.765625, 0.234375], 0.703125: [0.375, 0.625, 0.875, 0.125], 0.275146484375: [0.421875, 0.578125], 0.111083984375: [0.828125, 0.171875], 0.464599609375: [0.859375, 0.140625], 0.810302734375: [0.453125, 0.546875], 0.087646484375: [0.421875, 0.578125], 0.1552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.6162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.878662109375: [0.890625, 0.109375], 0.83984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.343505859375: [0.484375, 0.515625], 0.4912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.228271484375: [0.921875, 0.078125], 0.636474609375: [0.359375, 0.640625], 0.0146484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.306396484375: [0.421875, 0.578125], 0.411865234375: [0.796875, 0.203125], 0.167724609375: [0.359375, 0.640625], 0.638427734375: [0.953125, 0.046875], 0.8896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.058349609375: [0.859375, 0.140625], 0.734375: [0.375, 0.625, 0.875, 0.125], 0.290771484375: [0.921875, 0.078125], 0.480224609375: [0.359375, 0.640625], 0.841552734375: [0.453125, 0.546875], 0.091552734375: [0.453125, 0.546875], 0.1630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.6474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4755859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.909912109375: [0.890625, 0.109375], 0.87109375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.359130859375: [0.984375, 0.015625], 0.599365234375: [0.796875, 0.203125], 0.525146484375: [0.421875, 0.578125], 0.978271484375: [0.921875, 0.078125], 0.0224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.667724609375: [0.359375, 0.640625], 0.060302734375: [0.453125, 0.546875], 0.177490234375: [0.296875, 0.703125], 0.427490234375: [0.296875, 0.703125], 0.175537109375: [0.390625, 0.609375], 0.9208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.804443359375: [0.765625, 0.234375], 0.765625: [0.375, 0.625, 0.875, 0.125], 0.720458984375: [0.328125, 0.671875], 0.587646484375: [0.421875, 0.578125], 0.062255859375: [0.484375, 0.515625], 0.495849609375: [0.859375, 0.140625], 0.872802734375: [0.453125, 0.546875], 0.1708984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.6787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.562255859375: [0.484375, 0.515625], 0.031005859375: [0.484375, 0.515625], 0.941162109375: [0.890625, 0.109375], 0.90234375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.374755859375: [0.484375, 0.515625], 0.630615234375: [0.796875, 0.203125], 0.243896484375: [0.421875, 0.578125], 0.698974609375: [0.359375, 0.640625], 0.761474609375: [0.359375, 0.640625], 0.253662109375: [0.890625, 0.109375], 0.657958984375: [0.328125, 0.671875], 0.12109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.443115234375: [0.796875, 0.203125], 0.183349609375: [0.859375, 0.140625], 0.775146484375: [0.421875, 0.578125], 0.9521484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.835693359375: [0.765625, 0.234375], 0.298583984375: [0.828125, 0.171875], 0.322021484375: [0.921875, 0.078125], 0.788818359375: [0.734375, 0.265625], 0.601318359375: [0.734375, 0.265625], 0.75: [0.5, 0.75, 0.0, 0.25], 0.904052734375: [0.453125, 0.546875], 0.099365234375: [0.203125, 0.796875], 0.1787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.593505859375: [0.484375, 0.515625], 0.972412109375: [0.890625, 0.109375], 0.93359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.390380859375: [0.984375, 0.015625], 0.661865234375: [0.796875, 0.203125], 0.816162109375: [0.890625, 0.109375], 0.527099609375: [0.859375, 0.140625], 0.730224609375: [0.359375, 0.640625], 0.269287109375: [0.390625, 0.609375], 0.458740234375: [0.296875, 0.703125], 0.191162109375: [0.890625, 0.109375], 0.15234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.2646484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.798583984375: [0.828125, 0.171875], 0.9833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.866943359375: [0.765625, 0.234375], 0.828125: [0.375, 0.625, 0.875, 0.125], 0.337646484375: [0.421875, 0.578125], 0.032958984375: [0.328125, 0.671875], 0.935302734375: [0.453125, 0.546875], 0.103271484375: [0.921875, 0.078125], 0.7412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.624755859375: [0.484375, 0.515625], 0.96484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.406005859375: [0.484375, 0.515625], 0.693115234375: [0.796875, 0.203125], 0.884521484375: [0.921875, 0.078125], 0.868896484375: [0.421875, 0.578125], 0.034912109375: [0.890625, 0.109375], 0.284912109375: [0.890625, 0.109375], 0.859375: [0.375, 0.625, 0.875, 0.125], 0.308349609375: [0.859375, 0.140625], 0.474365234375: [0.796875, 0.203125], 0.198974609375: [0.359375, 0.640625], 0.2802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.898193359375: [0.765625, 0.234375], 0.366943359375: [0.765625, 0.234375], 0.353271484375: [0.921875, 0.078125], 0.138427734375: [0.953125, 0.046875], 0.05859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.107177734375: [0.953125, 0.046875], 0.3349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.656005859375: [0.484375, 0.515625], 0.939208984375: [0.671875, 0.328125], 0.99609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.724365234375: [0.796875, 0.203125], 0.952880859375: [0.984375, 0.015625], 0.642333984375: [0.828125, 0.171875], 0.529052734375: [0.453125, 0.546875], 0.1943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.300537109375: [0.390625, 0.609375], 0.046875: [0.375, 0.625, 0.875, 0.125], 0.489990234375: [0.296875, 0.703125], 0.501708984375: [0.328125, 0.671875], 0.206787109375: [0.390625, 0.609375], 0.550537109375: [0.390625, 0.609375], 0.929443359375: [0.765625, 0.234375], 0.890625: [0.625, 0.875, 0.125, 0.375], 0.368896484375: [0.421875, 0.578125], 0.146240234375: [0.296875, 0.703125], 0.997802734375: [0.453125, 0.546875], 0.095458984375: [0.328125, 0.671875], 0.2021484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.8037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.687255859375: [0.484375, 0.515625], 0.697021484375: [0.921875, 0.078125], 0.769287109375: [0.390625, 0.609375], 0.437255859375: [0.484375, 0.515625], 0.755615234375: [0.796875, 0.203125], 0.5615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8271484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.823974609375: [0.359375, 0.640625], 0.316162109375: [0.890625, 0.109375], 0.27734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.712646484375: [0.421875, 0.578125], 0.1865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.5224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.984130859375: [0.984375, 0.015625], 0.214599609375: [0.859375, 0.140625], 0.3115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.581787109375: [0.390625, 0.609375], 0.960693359375: [0.765625, 0.234375], 0.921875: [0.625, 0.875, 0.125, 0.375], 0.384521484375: [0.921875, 0.078125], 0.038818359375: [0.265625, 0.734375], 0.751708984375: [0.671875, 0.328125], 0.114990234375: [0.296875, 0.703125], 0.2099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.8349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.718505859375: [0.484375, 0.515625], 0.765380859375: [0.984375, 0.015625], 0.8818359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.452880859375: [0.984375, 0.015625], 0.786865234375: [0.796875, 0.203125], 0.5927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.531005859375: [0.484375, 0.515625], 0.855224609375: [0.640625, 0.359375], 0.331787109375: [0.390625, 0.609375], 0.792724609375: [0.359375, 0.640625], 0.544677734375: [0.953125, 0.046875], 0.726318359375: [0.734375, 0.265625], 0.222412109375: [0.890625, 0.109375], 0.18359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.3271484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.613037109375: [0.390625, 0.609375], 0.991943359375: [0.765625, 0.234375], 0.953125: [0.375, 0.625, 0.875, 0.125], 0.040771484375: [0.921875, 0.078125], 0.118896484375: [0.421875, 0.578125], 0.2177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.749755859375: [0.484375, 0.515625], 0.279052734375: [0.453125, 0.546875], 0.468505859375: [0.484375, 0.515625], 0.818115234375: [0.796875, 0.203125], 0.6240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.923583984375: [0.828125, 0.171875], 0.886474609375: [0.640625, 0.359375], 0.347412109375: [0.890625, 0.109375], 0.30859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.575927734375: [0.953125, 0.046875], 0.263427734375: [0.953125, 0.046875], 0.876708984375: [0.671875, 0.328125], 0.230224609375: [0.359375, 0.640625], 0.3427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.644287109375: [0.390625, 0.609375], 0.564208984375: [0.328125, 0.671875], 0.984375: [0.625, 0.875, 0.125, 0.375], 0.415771484375: [0.921875, 0.078125], 0.042724609375: [0.359375, 0.640625], 0.888427734375: [0.953125, 0.046875], 0.993896484375: [0.421875, 0.578125], 0.122802734375: [0.453125, 0.546875], 0.2255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.8974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.781005859375: [0.484375, 0.515625], 0.294677734375: [0.953125, 0.046875], 0.484130859375: [0.984375, 0.015625], 0.849365234375: [0.796875, 0.203125], 0.605224609375: [0.359375, 0.640625], 0.532958984375: [0.328125, 0.671875], 0.025146484375: [0.421875, 0.578125], 0.0302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.917724609375: [0.640625, 0.359375], 0.036865234375: [0.796875, 0.203125], 0.607177734375: [0.953125, 0.046875], 0.140380859375: [0.984375, 0.015625], 0.003662109375: [0.890625, 0.109375], 0.238037109375: [0.390625, 0.609375], 0.3583984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.675537109375: [0.390625, 0.609375], 0.431396484375: [0.421875, 0.578125], 0.044677734375: [0.953125, 0.046875], 0.2333984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.812255859375: [0.484375, 0.515625], 0.310302734375: [0.453125, 0.546875], 0.970458984375: [0.671875, 0.328125], 0.499755859375: [0.484375, 0.515625], 0.880615234375: [0.796875, 0.203125], 0.6865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.570068359375: [0.734375, 0.265625], 0.948974609375: [0.359375, 0.640625], 0.378662109375: [0.890625, 0.109375], 0.33984375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.066162109375: [0.890625, 0.109375], 0.171875: [0.375, 0.625, 0.875, 0.125], 0.011474609375: [0.359375, 0.640625], 0.3740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.706787109375: [0.390625, 0.609375], 0.257568359375: [0.265625, 0.734375], 0.447021484375: [0.921875, 0.078125], 0.185302734375: [0.453125, 0.546875], 0.023193359375: [0.234375, 0.765625], 0.2412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.843505859375: [0.484375, 0.515625], 0.423583984375: [0.828125, 0.171875], 0.325927734375: [0.953125, 0.046875], 0.728271484375: [0.921875, 0.078125], 0.837646484375: [0.421875, 0.578125], 0.911865234375: [0.796875, 0.203125], 0.7177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.503662109375: [0.890625, 0.109375], 0.5625: [0.5, 0.75, 0.0, 0.25], 0.947021484375: [0.921875, 0.078125], 0.980224609375: [0.640625, 0.359375], 0.394287109375: [0.390625, 0.609375], 0.669677734375: [0.953125, 0.046875], 0.070068359375: [0.265625, 0.734375], 0.52734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.03125: [0.25, 0.5, 0.75, 0.0], 0.3896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.738037109375: [0.390625, 0.609375], 0.273193359375: [0.765625, 0.234375], 0.907958984375: [0.671875, 0.328125], 0.462646484375: [0.421875, 0.578125], 0.193115234375: [0.796875, 0.203125], 0.782958984375: [0.671875, 0.328125], 0.2490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.9912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.874755859375: [0.484375, 0.515625], 0.341552734375: [0.453125, 0.546875], 0.132568359375: [0.265625, 0.734375], 0.851318359375: [0.734375, 0.265625], 0.943115234375: [0.796875, 0.203125], 0.7490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.632568359375: [0.734375, 0.265625], 0.59375: [0.5, 0.75, 0.0, 0.25], 0.409912109375: [0.890625, 0.109375], 0.37109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.700927734375: [0.953125, 0.046875], 0.073974609375: [0.359375, 0.640625], 0.421630859375: [0.984375, 0.015625], 0.142333984375: [0.828125, 0.171875], 0.050537109375: [0.390625, 0.609375], 0.288818359375: [0.265625, 0.734375], 0.25: [0.5, 0.75, 0.0, 0.25], 0.611083984375: [0.828125, 0.171875], 0.478271484375: [0.921875, 0.078125], 0.200927734375: [0.953125, 0.046875], 0.540771484375: [0.921875, 0.078125], 0.8125: [0.5, 0.75, 0.0, 0.25], 0.906005859375: [0.484375, 0.515625], 0.357177734375: [0.953125, 0.046875], 0.400146484375: [0.421875, 0.578125]}
averages_odd={0.0: [0.25, 0.5, 0.75, 0.0], 0.001708984375: [0.328125, 0.671875], 0.216552734375: [0.453125, 0.546875], 0.974365234375: [0.796875, 0.203125], 0.0068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.029052734375: [0.453125, 0.546875], 0.505615234375: [0.796875, 0.203125], 0.0693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.681396484375: [0.421875, 0.578125], 0.425537109375: [0.390625, 0.609375], 0.732177734375: [0.953125, 0.046875], 0.892333984375: [0.828125, 0.171875], 0.5380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.915771484375: [0.921875, 0.078125], 0.5: [0.5, 0.75, 0.0, 0.25], 0.4208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.800537109375: [0.390625, 0.609375], 0.595458984375: [0.671875, 0.328125], 0.493896484375: [0.421875, 0.578125], 0.052490234375: [0.296875, 0.703125], 0.966552734375: [0.453125, 0.546875], 0.558349609375: [0.859375, 0.140625], 0.007568359375: [0.265625, 0.734375], 0.937255859375: [0.484375, 0.515625], 0.372802734375: [0.453125, 0.546875], 0.148193359375: [0.234375, 0.765625], 0.568115234375: [0.796875, 0.203125], 0.8115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.695068359375: [0.734375, 0.265625], 0.65625: [0.5, 0.75, 0.0, 0.25], 0.251708984375: [0.328125, 0.671875], 0.441162109375: [0.890625, 0.109375], 0.40234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.154052734375: [0.453125, 0.546875], 0.081787109375: [0.390625, 0.609375], 0.650146484375: [0.421875, 0.578125], 0.5693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.4365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.831787109375: [0.390625, 0.609375], 0.320068359375: [0.265625, 0.734375], 0.28125: [0.25, 0.5, 0.75, 0.0], 0.7802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.625: [0.5, 0.75, 0.0, 0.25], 0.054443359375: [0.234375, 0.765625], 0.589599609375: [0.859375, 0.140625], 0.968505859375: [0.484375, 0.515625], 0.388427734375: [0.953125, 0.046875], 0.156005859375: [0.484375, 0.515625], 0.8427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.507568359375: [0.734375, 0.265625], 0.0771484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.267333984375: [0.828125, 0.171875], 0.456787109375: [0.390625, 0.609375], 0.794677734375: [0.953125, 0.046875], 0.085693359375: [0.765625, 0.234375], 0.6005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.53125: [0.5, 0.75, 0.0, 0.25], 0.24609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.4521484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.863037109375: [0.390625, 0.609375], 0.335693359375: [0.765625, 0.234375], 0.296875: [0.375, 0.625, 0.875, 0.125], 0.552490234375: [0.703125, 0.296875], 0.224365234375: [0.796875, 0.203125], 0.620849609375: [0.859375, 0.140625], 0.1240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.999755859375: [0.484375, 0.515625], 0.404052734375: [0.453125, 0.546875], 0.163818359375: [0.265625, 0.734375], 0.759521484375: [0.921875, 0.078125], 0.125: [0.25, 0.5, 0.75, 0.0], 0.8740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.757568359375: [0.734375, 0.265625], 0.71875: [0.5, 0.75, 0.0, 0.25], 0.282958984375: [0.328125, 0.671875], 0.015380859375: [0.984375, 0.015625], 0.825927734375: [0.953125, 0.046875], 0.089599609375: [0.859375, 0.140625], 0.407958984375: [0.328125, 0.671875], 0.4677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.894287109375: [0.390625, 0.609375], 0.351318359375: [0.734375, 0.265625], 0.3125: [0.25, 0.5, 0.75, 0.0], 0.583740234375: [0.703125, 0.296875], 0.665771484375: [0.921875, 0.078125], 0.232177734375: [0.953125, 0.046875], 0.017333984375: [0.828125, 0.171875], 0.652099609375: [0.859375, 0.140625], 0.814208984375: [0.671875, 0.328125], 0.419677734375: [0.953125, 0.046875], 0.171630859375: [0.984375, 0.015625], 0.9052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.509521484375: [0.921875, 0.078125], 0.0849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.009521484375: [0.921875, 0.078125], 0.736083984375: [0.828125, 0.171875], 0.488037109375: [0.390625, 0.609375], 0.857177734375: [0.953125, 0.046875], 0.093505859375: [0.484375, 0.515625], 0.236083984375: [0.828125, 0.171875], 0.6630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.546630859375: [0.984375, 0.015625], 0.4833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.925537109375: [0.390625, 0.609375], 0.208740234375: [0.296875, 0.703125], 0.328125: [0.375, 0.625, 0.875, 0.125], 0.614990234375: [0.296875, 0.703125], 0.048583984375: [0.828125, 0.171875], 0.239990234375: [0.296875, 0.703125], 0.683349609375: [0.859375, 0.140625], 0.572021484375: [0.921875, 0.078125], 0.806396484375: [0.421875, 0.578125], 0.435302734375: [0.453125, 0.546875], 0.179443359375: [0.765625, 0.234375], 0.140625: [0.375, 0.625, 0.875, 0.125], 0.9365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.820068359375: [0.734375, 0.265625], 0.78125: [0.5, 0.75, 0.0, 0.25], 0.314208984375: [0.328125, 0.671875], 0.46484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.097412109375: [0.890625, 0.109375], 0.6943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.577880859375: [0.984375, 0.015625], 0.566162109375: [0.890625, 0.109375], 0.4990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.956787109375: [0.390625, 0.609375], 0.382568359375: [0.734375, 0.265625], 0.34375: [0.5, 0.75, 0.0, 0.25], 0.646240234375: [0.703125, 0.296875], 0.626708984375: [0.328125, 0.671875], 0.247802734375: [0.453125, 0.546875], 0.714599609375: [0.859375, 0.140625], 0.261474609375: [0.359375, 0.640625], 0.02734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.7568359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.450927734375: [0.953125, 0.046875], 0.187255859375: [0.484375, 0.515625], 0.2568359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.0458984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.9677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.511474609375: [0.359375, 0.640625], 0.0927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.329833984375: [0.828125, 0.171875], 0.126708984375: [0.328125, 0.671875], 0.919677734375: [0.953125, 0.046875], 0.101318359375: [0.265625, 0.734375], 0.161865234375: [0.796875, 0.203125], 0.7255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.609130859375: [0.984375, 0.015625], 0.0625: [0.25, 0.5, 0.75, 0.0], 0.579833984375: [0.828125, 0.171875], 0.988037109375: [0.390625, 0.609375], 0.398193359375: [0.765625, 0.234375], 0.359375: [0.375, 0.625, 0.875, 0.125], 0.677490234375: [0.703125, 0.296875], 0.745849609375: [0.859375, 0.140625], 0.277099609375: [0.859375, 0.140625], 0.466552734375: [0.453125, 0.546875], 0.195068359375: [0.265625, 0.734375], 0.15625: [0.25, 0.5, 0.75, 0.0], 0.2724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.822021484375: [0.921875, 0.078125], 0.9990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.882568359375: [0.734375, 0.265625], 0.84375: [0.5, 0.75, 0.0, 0.25], 0.345458984375: [0.328125, 0.671875], 0.134521484375: [0.921875, 0.078125], 0.49609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.950927734375: [0.953125, 0.046875], 0.105224609375: [0.359375, 0.640625], 0.363037109375: [0.390625, 0.609375], 0.640380859375: [0.984375, 0.015625], 0.413818359375: [0.734375, 0.265625], 0.375: [0.5, 0.75, 0.0, 0.25], 0.708740234375: [0.703125, 0.296875], 0.763427734375: [0.953125, 0.046875], 0.777099609375: [0.859375, 0.140625], 0.292724609375: [0.359375, 0.640625], 0.43359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.482177734375: [0.953125, 0.046875], 0.202880859375: [0.984375, 0.015625], 0.790771484375: [0.921875, 0.078125], 0.534912109375: [0.890625, 0.109375], 0.663818359375: [0.734375, 0.265625], 0.513427734375: [0.953125, 0.046875], 0.1005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.361083984375: [0.828125, 0.171875], 0.603271484375: [0.921875, 0.078125], 0.0615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.109130859375: [0.984375, 0.015625], 0.7880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.671630859375: [0.984375, 0.015625], 0.429443359375: [0.765625, 0.234375], 0.390625: [0.375, 0.625, 0.875, 0.125], 0.739990234375: [0.703125, 0.296875], 0.5458984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.808349609375: [0.859375, 0.140625], 0.845458984375: [0.671875, 0.328125], 0.077880859375: [0.984375, 0.015625], 0.861083984375: [0.828125, 0.171875], 0.497802734375: [0.453125, 0.546875], 0.210693359375: [0.234375, 0.765625], 0.3037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.548583984375: [0.828125, 0.171875], 0.945068359375: [0.734375, 0.265625], 0.90625: [0.5, 0.75, 0.0, 0.25], 0.376708984375: [0.328125, 0.671875], 0.150146484375: [0.421875, 0.578125], 0.113037109375: [0.390625, 0.609375], 0.8193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.255615234375: [0.796875, 0.203125], 0.445068359375: [0.265625, 0.734375], 0.40625: [0.5, 0.75, 0.0, 0.25], 0.771240234375: [0.703125, 0.296875], 0.900146484375: [0.421875, 0.578125], 0.5771484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.839599609375: [0.859375, 0.140625], 0.323974609375: [0.359375, 0.640625], 0.913818359375: [0.734375, 0.265625], 0.875: [0.5, 0.75, 0.0, 0.25], 0.218505859375: [0.484375, 0.515625], 0.3193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.597412109375: [0.890625, 0.109375], 0.55859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.515380859375: [0.984375, 0.015625], 0.9375: [0.5, 0.75, 0.0, 0.25], 0.392333984375: [0.828125, 0.171875], 0.157958984375: [0.328125, 0.671875], 0.116943359375: [0.234375, 0.765625], 0.8505859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.734130859375: [0.984375, 0.015625], 0.078125: [0.375, 0.625, 0.875, 0.125], 0.954833984375: [0.828125, 0.171875], 0.634521484375: [0.921875, 0.078125], 0.460693359375: [0.765625, 0.234375], 0.421875: [0.375, 0.625, 0.875, 0.125], 0.802490234375: [0.703125, 0.296875], 0.6083984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.870849609375: [0.859375, 0.140625], 0.339599609375: [0.859375, 0.140625], 0.982177734375: [0.953125, 0.046875], 0.560302734375: [0.453125, 0.546875], 0.09375: [0.25, 0.5, 0.75, 0.0], 0.226318359375: [0.265625, 0.734375], 0.1875: [0.25, 0.5, 0.75, 0.0], 0.021240234375: [0.296875, 0.703125], 0.628662109375: [0.890625, 0.109375], 0.58984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.704833984375: [0.828125, 0.171875], 0.96875: [0.5, 0.75, 0.0, 0.25], 0.165771484375: [0.921875, 0.078125], 0.120849609375: [0.859375, 0.140625], 0.271240234375: [0.296875, 0.703125], 0.169677734375: [0.953125, 0.046875], 0.286865234375: [0.796875, 0.203125], 0.046630859375: [0.984375, 0.015625], 0.476318359375: [0.734375, 0.265625], 0.4375: [0.5, 0.75, 0.0, 0.25], 0.833740234375: [0.703125, 0.296875], 0.6396484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.6875: [0.5, 0.75, 0.0, 0.25], 0.902099609375: [0.859375, 0.140625], 0.355224609375: [0.359375, 0.640625], 0.591552734375: [0.453125, 0.546875], 0.234130859375: [0.984375, 0.015625], 0.3505859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.659912109375: [0.890625, 0.109375], 0.62109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.517333984375: [0.828125, 0.171875], 0.1162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.013427734375: [0.953125, 0.046875], 0.173583984375: [0.828125, 0.171875], 0.767333984375: [0.828125, 0.171875], 0.124755859375: [0.484375, 0.515625], 0.245849609375: [0.859375, 0.140625], 0.9130859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.796630859375: [0.984375, 0.015625], 0.302490234375: [0.296875, 0.703125], 0.491943359375: [0.765625, 0.234375], 0.453125: [0.375, 0.625, 0.875, 0.125], 0.864990234375: [0.703125, 0.296875], 0.6708984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.554443359375: [0.765625, 0.234375], 0.933349609375: [0.859375, 0.140625], 0.370849609375: [0.859375, 0.140625], 0.622802734375: [0.453125, 0.546875], 0.064208984375: [0.328125, 0.671875], 0.005615234375: [0.796875, 0.203125], 0.241943359375: [0.765625, 0.234375], 0.203125: [0.375, 0.625, 0.875, 0.125], 0.3662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.691162109375: [0.890625, 0.109375], 0.65234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.962646484375: [0.421875, 0.578125], 0.439208984375: [0.328125, 0.671875], 0.181396484375: [0.421875, 0.578125], 0.015625: [0.375, 0.625, 0.875, 0.125], 0.796875: [0.375, 0.625, 0.875, 0.125], 0.21484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.9443359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.827880859375: [0.984375, 0.015625], 0.08984375: [0.1875, 0.3125, 0.6875, 0.9375, 0.0625, 0.4375, 0.5625, 0.8125], 0.318115234375: [0.796875, 0.203125], 0.538818359375: [0.734375, 0.265625], 0.6552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.986083984375: [0.828125, 0.171875], 0.46875: [0.5, 0.75, 0.0, 0.25], 0.896240234375: [0.703125, 0.296875], 0.7021484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.585693359375: [0.765625, 0.234375], 0.546875: [0.375, 0.625, 0.875, 0.125], 0.964599609375: [0.859375, 0.140625], 0.386474609375: [0.359375, 0.640625], 0.654052734375: [0.453125, 0.546875], 0.068115234375: [0.796875, 0.203125], 0.618896484375: [0.421875, 0.578125], 0.4052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.019287109375: [0.390625, 0.609375], 0.249755859375: [0.484375, 0.515625], 0.3818359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.722412109375: [0.890625, 0.109375], 0.68359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.265380859375: [0.984375, 0.015625], 0.519287109375: [0.390625, 0.609375], 0.454833984375: [0.828125, 0.171875], 0.189208984375: [0.328125, 0.671875], 0.9755859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.859130859375: [0.984375, 0.015625], 0.333740234375: [0.296875, 0.703125], 0.128662109375: [0.890625, 0.109375], 0.689208984375: [0.671875, 0.328125], 0.484375: [0.375, 0.625, 0.875, 0.125], 0.927490234375: [0.703125, 0.296875], 0.056396484375: [0.421875, 0.578125], 0.7333984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.616943359375: [0.765625, 0.234375], 0.578125: [0.375, 0.625, 0.875, 0.125], 0.995849609375: [0.859375, 0.140625], 0.402099609375: [0.859375, 0.140625], 0.685302734375: [0.453125, 0.546875], 0.072021484375: [0.921875, 0.078125], 0.1083984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.21875: [0.25, 0.5, 0.75, 0.0], 0.3974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.753662109375: [0.890625, 0.109375], 0.71484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.281005859375: [0.484375, 0.515625], 0.470458984375: [0.328125, 0.671875], 0.197021484375: [0.921875, 0.078125], 0.931396484375: [0.421875, 0.578125], 0.304443359375: [0.765625, 0.234375], 0.890380859375: [0.984375, 0.015625], 0.349365234375: [0.796875, 0.203125], 0.702880859375: [0.984375, 0.015625], 0.136474609375: [0.359375, 0.640625], 0.958740234375: [0.703125, 0.296875], 0.7646484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.648193359375: [0.765625, 0.234375], 0.609375: [0.375, 0.625, 0.875, 0.125], 0.829833984375: [0.828125, 0.171875], 0.417724609375: [0.359375, 0.640625], 0.716552734375: [0.453125, 0.546875], 0.075927734375: [0.953125, 0.046875], 0.1318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.265625: [0.375, 0.625, 0.875, 0.125], 0.2958984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.4130859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.784912109375: [0.890625, 0.109375], 0.74609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.2880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.773193359375: [0.765625, 0.234375], 0.521240234375: [0.703125, 0.296875], 0.486083984375: [0.828125, 0.171875], 0.204833984375: [0.828125, 0.171875], 0.542724609375: [0.359375, 0.640625], 0.921630859375: [0.984375, 0.015625], 0.364990234375: [0.296875, 0.703125], 0.144287109375: [0.390625, 0.609375], 0.989990234375: [0.703125, 0.296875], 0.7958984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.679443359375: [0.765625, 0.234375], 0.640625: [0.375, 0.625, 0.875, 0.125], 0.433349609375: [0.859375, 0.140625], 0.747802734375: [0.453125, 0.546875], 0.079833984375: [0.828125, 0.171875], 0.1396484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.5537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.234375: [0.375, 0.625, 0.875, 0.125], 0.027099609375: [0.859375, 0.140625], 0.296630859375: [0.984375, 0.015625], 0.77734375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.312255859375: [0.484375, 0.515625], 0.212646484375: [0.421875, 0.578125], 0.573974609375: [0.359375, 0.640625], 0.5146484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.380615234375: [0.796875, 0.203125], 0.152099609375: [0.859375, 0.140625], 0.472412109375: [0.890625, 0.109375], 0.710693359375: [0.765625, 0.234375], 0.671875: [0.375, 0.625, 0.875, 0.125], 0.259521484375: [0.921875, 0.078125], 0.6318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.448974609375: [0.359375, 0.640625], 0.779052734375: [0.453125, 0.546875], 0.083740234375: [0.296875, 0.703125], 0.1474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.5849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.673583984375: [0.828125, 0.171875], 0.4443359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.847412109375: [0.890625, 0.109375], 0.80859375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.327880859375: [0.984375, 0.015625], 0.853271484375: [0.921875, 0.078125], 0.536865234375: [0.796875, 0.203125], 0.523193359375: [0.765625, 0.234375], 0.976318359375: [0.734375, 0.265625], 0.220458984375: [0.328125, 0.671875], 0.130615234375: [0.796875, 0.203125], 0.556396484375: [0.421875, 0.578125], 0.515625: [0.375, 0.625, 0.875, 0.125], 0.109375: [0.375, 0.625, 0.875, 0.125], 0.396240234375: [0.296875, 0.703125], 0.159912109375: [0.890625, 0.109375], 0.743896484375: [0.421875, 0.578125], 0.8583984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.741943359375: [0.765625, 0.234375], 0.703125: [0.375, 0.625, 0.875, 0.125], 0.275146484375: [0.421875, 0.578125], 0.111083984375: [0.828125, 0.171875], 0.464599609375: [0.859375, 0.140625], 0.810302734375: [0.453125, 0.546875], 0.087646484375: [0.421875, 0.578125], 0.1552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.6162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.878662109375: [0.890625, 0.109375], 0.83984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.343505859375: [0.484375, 0.515625], 0.4912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.228271484375: [0.921875, 0.078125], 0.636474609375: [0.359375, 0.640625], 0.0146484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.306396484375: [0.421875, 0.578125], 0.411865234375: [0.796875, 0.203125], 0.167724609375: [0.359375, 0.640625], 0.638427734375: [0.953125, 0.046875], 0.8896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.058349609375: [0.859375, 0.140625], 0.734375: [0.375, 0.625, 0.875, 0.125], 0.290771484375: [0.921875, 0.078125], 0.480224609375: [0.359375, 0.640625], 0.841552734375: [0.453125, 0.546875], 0.091552734375: [0.453125, 0.546875], 0.1630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.6474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4755859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.909912109375: [0.890625, 0.109375], 0.87109375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.359130859375: [0.984375, 0.015625], 0.599365234375: [0.796875, 0.203125], 0.525146484375: [0.421875, 0.578125], 0.978271484375: [0.921875, 0.078125], 0.0224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.667724609375: [0.359375, 0.640625], 0.060302734375: [0.453125, 0.546875], 0.177490234375: [0.296875, 0.703125], 0.427490234375: [0.296875, 0.703125], 0.175537109375: [0.390625, 0.609375], 0.9208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.804443359375: [0.765625, 0.234375], 0.765625: [0.375, 0.625, 0.875, 0.125], 0.720458984375: [0.328125, 0.671875], 0.587646484375: [0.421875, 0.578125], 0.062255859375: [0.484375, 0.515625], 0.495849609375: [0.859375, 0.140625], 0.872802734375: [0.453125, 0.546875], 0.1708984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.6787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.562255859375: [0.484375, 0.515625], 0.031005859375: [0.484375, 0.515625], 0.941162109375: [0.890625, 0.109375], 0.90234375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.374755859375: [0.484375, 0.515625], 0.630615234375: [0.796875, 0.203125], 0.243896484375: [0.421875, 0.578125], 0.698974609375: [0.359375, 0.640625], 0.761474609375: [0.359375, 0.640625], 0.253662109375: [0.890625, 0.109375], 0.657958984375: [0.328125, 0.671875], 0.12109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.443115234375: [0.796875, 0.203125], 0.183349609375: [0.859375, 0.140625], 0.775146484375: [0.421875, 0.578125], 0.9521484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.835693359375: [0.765625, 0.234375], 0.298583984375: [0.828125, 0.171875], 0.322021484375: [0.921875, 0.078125], 0.788818359375: [0.734375, 0.265625], 0.601318359375: [0.734375, 0.265625], 0.75: [0.5, 0.75, 0.0, 0.25], 0.904052734375: [0.453125, 0.546875], 0.099365234375: [0.203125, 0.796875], 0.1787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.593505859375: [0.484375, 0.515625], 0.972412109375: [0.890625, 0.109375], 0.93359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.390380859375: [0.984375, 0.015625], 0.661865234375: [0.796875, 0.203125], 0.816162109375: [0.890625, 0.109375], 0.527099609375: [0.859375, 0.140625], 0.730224609375: [0.359375, 0.640625], 0.269287109375: [0.390625, 0.609375], 0.458740234375: [0.296875, 0.703125], 0.191162109375: [0.890625, 0.109375], 0.15234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.2646484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.798583984375: [0.828125, 0.171875], 0.9833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.866943359375: [0.765625, 0.234375], 0.828125: [0.375, 0.625, 0.875, 0.125], 0.337646484375: [0.421875, 0.578125], 0.032958984375: [0.328125, 0.671875], 0.935302734375: [0.453125, 0.546875], 0.103271484375: [0.921875, 0.078125], 0.7412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.624755859375: [0.484375, 0.515625], 0.96484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.406005859375: [0.484375, 0.515625], 0.693115234375: [0.796875, 0.203125], 0.884521484375: [0.921875, 0.078125], 0.868896484375: [0.421875, 0.578125], 0.034912109375: [0.890625, 0.109375], 0.284912109375: [0.890625, 0.109375], 0.859375: [0.375, 0.625, 0.875, 0.125], 0.308349609375: [0.859375, 0.140625], 0.474365234375: [0.796875, 0.203125], 0.198974609375: [0.359375, 0.640625], 0.2802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.898193359375: [0.765625, 0.234375], 0.366943359375: [0.765625, 0.234375], 0.353271484375: [0.921875, 0.078125], 0.138427734375: [0.953125, 0.046875], 0.05859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.107177734375: [0.953125, 0.046875], 0.3349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.656005859375: [0.484375, 0.515625], 0.939208984375: [0.671875, 0.328125], 0.99609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.724365234375: [0.796875, 0.203125], 0.952880859375: [0.984375, 0.015625], 0.642333984375: [0.828125, 0.171875], 0.529052734375: [0.453125, 0.546875], 0.1943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.300537109375: [0.390625, 0.609375], 0.046875: [0.375, 0.625, 0.875, 0.125], 0.489990234375: [0.296875, 0.703125], 0.501708984375: [0.328125, 0.671875], 0.206787109375: [0.390625, 0.609375], 0.550537109375: [0.390625, 0.609375], 0.929443359375: [0.765625, 0.234375], 0.890625: [0.625, 0.875, 0.125, 0.375], 0.368896484375: [0.421875, 0.578125], 0.146240234375: [0.296875, 0.703125], 0.997802734375: [0.453125, 0.546875], 0.095458984375: [0.328125, 0.671875], 0.2021484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.8037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.687255859375: [0.484375, 0.515625], 0.697021484375: [0.921875, 0.078125], 0.769287109375: [0.390625, 0.609375], 0.437255859375: [0.484375, 0.515625], 0.755615234375: [0.796875, 0.203125], 0.5615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8271484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.823974609375: [0.359375, 0.640625], 0.316162109375: [0.890625, 0.109375], 0.27734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.712646484375: [0.421875, 0.578125], 0.1865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.5224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.984130859375: [0.984375, 0.015625], 0.214599609375: [0.859375, 0.140625], 0.3115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.581787109375: [0.390625, 0.609375], 0.960693359375: [0.765625, 0.234375], 0.921875: [0.625, 0.875, 0.125, 0.375], 0.384521484375: [0.921875, 0.078125], 0.038818359375: [0.265625, 0.734375], 0.751708984375: [0.671875, 0.328125], 0.114990234375: [0.296875, 0.703125], 0.2099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.8349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.718505859375: [0.484375, 0.515625], 0.765380859375: [0.984375, 0.015625], 0.8818359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.452880859375: [0.984375, 0.015625], 0.786865234375: [0.796875, 0.203125], 0.5927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.531005859375: [0.484375, 0.515625], 0.855224609375: [0.640625, 0.359375], 0.331787109375: [0.390625, 0.609375], 0.792724609375: [0.359375, 0.640625], 0.544677734375: [0.953125, 0.046875], 0.726318359375: [0.734375, 0.265625], 0.222412109375: [0.890625, 0.109375], 0.18359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.3271484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.613037109375: [0.390625, 0.609375], 0.991943359375: [0.765625, 0.234375], 0.953125: [0.375, 0.625, 0.875, 0.125], 0.040771484375: [0.921875, 0.078125], 0.118896484375: [0.421875, 0.578125], 0.2177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.749755859375: [0.484375, 0.515625], 0.279052734375: [0.453125, 0.546875], 0.468505859375: [0.484375, 0.515625], 0.818115234375: [0.796875, 0.203125], 0.6240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.923583984375: [0.828125, 0.171875], 0.886474609375: [0.640625, 0.359375], 0.347412109375: [0.890625, 0.109375], 0.30859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.575927734375: [0.953125, 0.046875], 0.263427734375: [0.953125, 0.046875], 0.876708984375: [0.671875, 0.328125], 0.230224609375: [0.359375, 0.640625], 0.3427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.644287109375: [0.390625, 0.609375], 0.564208984375: [0.328125, 0.671875], 0.984375: [0.625, 0.875, 0.125, 0.375], 0.415771484375: [0.921875, 0.078125], 0.042724609375: [0.359375, 0.640625], 0.888427734375: [0.953125, 0.046875], 0.993896484375: [0.421875, 0.578125], 0.122802734375: [0.453125, 0.546875], 0.2255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.8974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.781005859375: [0.484375, 0.515625], 0.294677734375: [0.953125, 0.046875], 0.484130859375: [0.984375, 0.015625], 0.849365234375: [0.796875, 0.203125], 0.605224609375: [0.359375, 0.640625], 0.532958984375: [0.328125, 0.671875], 0.025146484375: [0.421875, 0.578125], 0.0302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.917724609375: [0.640625, 0.359375], 0.036865234375: [0.796875, 0.203125], 0.607177734375: [0.953125, 0.046875], 0.140380859375: [0.984375, 0.015625], 0.003662109375: [0.890625, 0.109375], 0.238037109375: [0.390625, 0.609375], 0.3583984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.675537109375: [0.390625, 0.609375], 0.431396484375: [0.421875, 0.578125], 0.044677734375: [0.953125, 0.046875], 0.2333984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.812255859375: [0.484375, 0.515625], 0.310302734375: [0.453125, 0.546875], 0.970458984375: [0.671875, 0.328125], 0.499755859375: [0.484375, 0.515625], 0.880615234375: [0.796875, 0.203125], 0.6865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.570068359375: [0.734375, 0.265625], 0.948974609375: [0.359375, 0.640625], 0.378662109375: [0.890625, 0.109375], 0.33984375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.066162109375: [0.890625, 0.109375], 0.171875: [0.375, 0.625, 0.875, 0.125], 0.011474609375: [0.359375, 0.640625], 0.3740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.706787109375: [0.390625, 0.609375], 0.257568359375: [0.265625, 0.734375], 0.447021484375: [0.921875, 0.078125], 0.185302734375: [0.453125, 0.546875], 0.023193359375: [0.234375, 0.765625], 0.2412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.843505859375: [0.484375, 0.515625], 0.423583984375: [0.828125, 0.171875], 0.325927734375: [0.953125, 0.046875], 0.728271484375: [0.921875, 0.078125], 0.837646484375: [0.421875, 0.578125], 0.911865234375: [0.796875, 0.203125], 0.7177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.503662109375: [0.890625, 0.109375], 0.5625: [0.5, 0.75, 0.0, 0.25], 0.947021484375: [0.921875, 0.078125], 0.980224609375: [0.640625, 0.359375], 0.394287109375: [0.390625, 0.609375], 0.669677734375: [0.953125, 0.046875], 0.070068359375: [0.265625, 0.734375], 0.52734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.03125: [0.25, 0.5, 0.75, 0.0], 0.3896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.738037109375: [0.390625, 0.609375], 0.273193359375: [0.765625, 0.234375], 0.907958984375: [0.671875, 0.328125], 0.462646484375: [0.421875, 0.578125], 0.193115234375: [0.796875, 0.203125], 0.782958984375: [0.671875, 0.328125], 0.2490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.9912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.874755859375: [0.484375, 0.515625], 0.341552734375: [0.453125, 0.546875], 0.132568359375: [0.265625, 0.734375], 0.851318359375: [0.734375, 0.265625], 0.943115234375: [0.796875, 0.203125], 0.7490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.632568359375: [0.734375, 0.265625], 0.59375: [0.5, 0.75, 0.0, 0.25], 0.409912109375: [0.890625, 0.109375], 0.37109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.700927734375: [0.953125, 0.046875], 0.073974609375: [0.359375, 0.640625], 0.421630859375: [0.984375, 0.015625], 0.142333984375: [0.828125, 0.171875], 0.050537109375: [0.390625, 0.609375], 0.288818359375: [0.265625, 0.734375], 0.25: [0.5, 0.75, 0.0, 0.25], 0.611083984375: [0.828125, 0.171875], 0.478271484375: [0.921875, 0.078125], 0.200927734375: [0.953125, 0.046875], 0.540771484375: [0.921875, 0.078125], 0.8125: [0.5, 0.75, 0.0, 0.25], 0.906005859375: [0.484375, 0.515625], 0.357177734375: [0.953125, 0.046875], 0.400146484375: [0.421875, 0.578125]} | pattern_zero = [0.0, 0.015380859375, 0.0302734375, 0.03125, 0.044677734375, 0.046630859375, 0.05859375, 0.0615234375, 0.0625, 0.072021484375, 0.075927734375, 0.077880859375, 0.0849609375, 0.08984375, 0.0927734375, 0.09375, 0.097412109375, 0.103271484375, 0.107177734375, 0.109130859375, 0.109375, 0.1162109375, 0.120849609375, 0.12109375, 0.1240234375, 0.125, 0.128662109375, 0.1318359375, 0.134521484375, 0.138427734375, 0.140380859375, 0.140625, 0.142333984375, 0.1474609375, 0.152099609375, 0.15234375, 0.1552734375, 0.15625, 0.159912109375, 0.161865234375, 0.1630859375, 0.165771484375, 0.169677734375, 0.1708984375, 0.171630859375, 0.171875, 0.173583984375, 0.1787109375, 0.179443359375, 0.183349609375, 0.18359375, 0.1865234375, 0.1875, 0.191162109375, 0.193115234375, 0.1943359375, 0.195068359375, 0.197021484375, 0.200927734375, 0.2021484375, 0.202880859375, 0.203125, 0.204833984375, 0.208740234375, 0.2099609375, 0.210693359375, 0.214599609375, 0.21484375, 0.2177734375, 0.21875, 0.220458984375, 0.222412109375, 0.224365234375, 0.2255859375, 0.226318359375, 0.228271484375, 0.230224609375, 0.232177734375, 0.2333984375, 0.234130859375, 0.234375, 0.236083984375, 0.238037109375, 0.239990234375, 0.2412109375, 0.241943359375, 0.243896484375, 0.245849609375, 0.24609375, 0.247802734375, 0.2490234375, 0.249755859375, 0.25, 0.251708984375, 0.253662109375, 0.255615234375, 0.2568359375, 0.257568359375, 0.259521484375, 0.261474609375, 0.263427734375, 0.2646484375, 0.265380859375, 0.265625, 0.267333984375, 0.269287109375, 0.271240234375, 0.2724609375, 0.273193359375, 0.275146484375, 0.277099609375, 0.27734375, 0.279052734375, 0.2802734375, 0.281005859375, 0.28125, 0.282958984375, 0.284912109375, 0.286865234375, 0.2880859375, 0.288818359375, 0.290771484375, 0.292724609375, 0.294677734375, 0.2958984375, 0.296630859375, 0.296875, 0.298583984375, 0.300537109375, 0.302490234375, 0.3037109375, 0.304443359375, 0.306396484375, 0.308349609375, 0.30859375, 0.310302734375, 0.3115234375, 0.312255859375, 0.3125, 0.314208984375, 0.316162109375, 0.318115234375, 0.3193359375, 0.320068359375, 0.322021484375, 0.323974609375, 0.325927734375, 0.3271484375, 0.327880859375, 0.328125, 0.329833984375, 0.331787109375, 0.333740234375, 0.3349609375, 0.335693359375, 0.337646484375, 0.339599609375, 0.33984375, 0.341552734375, 0.3427734375, 0.343505859375, 0.34375, 0.345458984375, 0.347412109375, 0.349365234375, 0.3505859375, 0.351318359375, 0.353271484375, 0.355224609375, 0.357177734375, 0.3583984375, 0.359130859375, 0.359375, 0.361083984375, 0.363037109375, 0.364990234375, 0.3662109375, 0.366943359375, 0.368896484375, 0.370849609375, 0.37109375, 0.372802734375, 0.3740234375, 0.374755859375, 0.375, 0.376708984375, 0.378662109375, 0.380615234375, 0.3818359375, 0.382568359375, 0.384521484375, 0.386474609375, 0.388427734375, 0.3896484375, 0.390380859375, 0.390625, 0.392333984375, 0.394287109375, 0.396240234375, 0.3974609375, 0.398193359375, 0.400146484375, 0.402099609375, 0.40234375, 0.404052734375, 0.4052734375, 0.406005859375, 0.40625, 0.407958984375, 0.409912109375, 0.411865234375, 0.4130859375, 0.413818359375, 0.415771484375, 0.417724609375, 0.419677734375, 0.4208984375, 0.421630859375, 0.421875, 0.423583984375, 0.425537109375, 0.427490234375, 0.4287109375, 0.429443359375, 0.431396484375, 0.433349609375, 0.43359375, 0.435302734375, 0.4365234375, 0.437255859375, 0.4375, 0.439208984375, 0.441162109375, 0.443115234375, 0.4443359375, 0.445068359375, 0.447021484375, 0.448974609375, 0.450927734375, 0.4521484375, 0.452880859375, 0.453125, 0.454833984375, 0.456787109375, 0.458740234375, 0.4599609375, 0.460693359375, 0.462646484375, 0.464599609375, 0.46484375, 0.466552734375, 0.4677734375, 0.468505859375, 0.46875, 0.470458984375, 0.472412109375, 0.474365234375, 0.4755859375, 0.476318359375, 0.478271484375, 0.480224609375, 0.482177734375, 0.4833984375, 0.484130859375, 0.484375, 0.486083984375, 0.488037109375, 0.489990234375, 0.4912109375, 0.491943359375, 0.493896484375, 0.495849609375, 0.49609375, 0.497802734375, 0.4990234375, 0.499755859375, 0.5, 0.501708984375, 0.503662109375, 0.505615234375, 0.5068359375, 0.507568359375, 0.509521484375, 0.511474609375, 0.513427734375, 0.5146484375, 0.515380859375, 0.515625, 0.517333984375, 0.519287109375, 0.521240234375, 0.5224609375, 0.523193359375, 0.525146484375, 0.527099609375, 0.52734375, 0.529052734375, 0.5302734375, 0.531005859375, 0.53125, 0.532958984375, 0.534912109375, 0.536865234375, 0.5380859375, 0.538818359375, 0.540771484375, 0.542724609375, 0.544677734375, 0.5458984375, 0.546630859375, 0.546875, 0.548583984375, 0.550537109375, 0.552490234375, 0.5537109375, 0.554443359375, 0.556396484375, 0.558349609375, 0.55859375, 0.560302734375, 0.5615234375, 0.562255859375, 0.5625, 0.564208984375, 0.566162109375, 0.568115234375, 0.5693359375, 0.570068359375, 0.572021484375, 0.573974609375, 0.575927734375, 0.5771484375, 0.577880859375, 0.578125, 0.579833984375, 0.581787109375, 0.583740234375, 0.5849609375, 0.585693359375, 0.587646484375, 0.589599609375, 0.58984375, 0.591552734375, 0.5927734375, 0.593505859375, 0.59375, 0.595458984375, 0.597412109375, 0.599365234375, 0.6005859375, 0.601318359375, 0.603271484375, 0.605224609375, 0.607177734375, 0.6083984375, 0.609130859375, 0.609375, 0.611083984375, 0.613037109375, 0.614990234375, 0.6162109375, 0.616943359375, 0.618896484375, 0.620849609375, 0.62109375, 0.622802734375, 0.6240234375, 0.624755859375, 0.625, 0.626708984375, 0.628662109375, 0.630615234375, 0.6318359375, 0.632568359375, 0.634521484375, 0.636474609375, 0.638427734375, 0.6396484375, 0.640380859375, 0.640625, 0.642333984375, 0.644287109375, 0.646240234375, 0.6474609375, 0.648193359375, 0.650146484375, 0.652099609375, 0.65234375, 0.654052734375, 0.6552734375, 0.656005859375, 0.65625, 0.657958984375, 0.659912109375, 0.661865234375, 0.6630859375, 0.663818359375, 0.665771484375, 0.667724609375, 0.669677734375, 0.6708984375, 0.671630859375, 0.671875, 0.673583984375, 0.675537109375, 0.677490234375, 0.6787109375, 0.679443359375, 0.681396484375, 0.683349609375, 0.68359375, 0.685302734375, 0.6865234375, 0.687255859375, 0.6875, 0.689208984375, 0.691162109375, 0.693115234375, 0.6943359375, 0.695068359375, 0.697021484375, 0.698974609375, 0.700927734375, 0.7021484375, 0.702880859375, 0.703125, 0.704833984375, 0.706787109375, 0.708740234375, 0.7099609375, 0.710693359375, 0.712646484375, 0.714599609375, 0.71484375, 0.716552734375, 0.7177734375, 0.718505859375, 0.71875, 0.720458984375, 0.722412109375, 0.724365234375, 0.7255859375, 0.726318359375, 0.728271484375, 0.730224609375, 0.732177734375, 0.7333984375, 0.734130859375, 0.734375, 0.736083984375, 0.738037109375, 0.739990234375, 0.7412109375, 0.741943359375, 0.743896484375, 0.745849609375, 0.74609375, 0.747802734375, 0.7490234375, 0.749755859375, 0.75, 0.751708984375, 0.753662109375, 0.755615234375, 0.7568359375, 0.757568359375, 0.759521484375, 0.761474609375, 0.763427734375, 0.7646484375, 0.765380859375, 0.765625, 0.767333984375, 0.769287109375, 0.771240234375, 0.7724609375, 0.773193359375, 0.775146484375, 0.777099609375, 0.77734375, 0.779052734375, 0.7802734375, 0.781005859375, 0.78125, 0.782958984375, 0.784912109375, 0.786865234375, 0.7880859375, 0.788818359375, 0.790771484375, 0.792724609375, 0.794677734375, 0.7958984375, 0.796630859375, 0.796875, 0.798583984375, 0.800537109375, 0.802490234375, 0.8037109375, 0.804443359375, 0.806396484375, 0.808349609375, 0.80859375, 0.810302734375, 0.8115234375, 0.812255859375, 0.8125, 0.814208984375, 0.816162109375, 0.818115234375, 0.8193359375, 0.820068359375, 0.822021484375, 0.823974609375, 0.825927734375, 0.8271484375, 0.827880859375, 0.828125, 0.829833984375, 0.831787109375, 0.833740234375, 0.8349609375, 0.835693359375, 0.837646484375, 0.839599609375, 0.83984375, 0.841552734375, 0.8427734375, 0.843505859375, 0.84375, 0.845458984375, 0.847412109375, 0.849365234375, 0.8505859375, 0.851318359375, 0.853271484375, 0.855224609375, 0.857177734375, 0.8583984375, 0.859130859375, 0.859375, 0.861083984375, 0.863037109375, 0.864990234375, 0.8662109375, 0.866943359375, 0.868896484375, 0.870849609375, 0.87109375, 0.872802734375, 0.8740234375, 0.874755859375, 0.875, 0.876708984375, 0.878662109375, 0.880615234375, 0.8818359375, 0.882568359375, 0.884521484375, 0.886474609375, 0.888427734375, 0.8896484375, 0.890380859375, 0.890625, 0.892333984375, 0.894287109375, 0.896240234375, 0.8974609375, 0.898193359375, 0.900146484375, 0.902099609375, 0.90234375, 0.904052734375, 0.9052734375, 0.906005859375, 0.90625, 0.907958984375, 0.909912109375, 0.911865234375, 0.9130859375, 0.913818359375, 0.915771484375, 0.917724609375, 0.919677734375, 0.9208984375, 0.921630859375, 0.921875, 0.923583984375, 0.925537109375, 0.927490234375, 0.9287109375, 0.929443359375, 0.931396484375, 0.933349609375, 0.93359375, 0.935302734375, 0.9365234375, 0.937255859375, 0.9375, 0.939208984375, 0.941162109375, 0.943115234375, 0.9443359375, 0.945068359375, 0.947021484375, 0.948974609375, 0.950927734375, 0.9521484375, 0.952880859375, 0.953125, 0.954833984375, 0.956787109375, 0.958740234375, 0.9599609375, 0.960693359375, 0.962646484375, 0.964599609375, 0.96484375, 0.966552734375, 0.9677734375, 0.968505859375, 0.96875, 0.970458984375, 0.972412109375, 0.974365234375, 0.9755859375, 0.976318359375, 0.978271484375, 0.980224609375, 0.982177734375, 0.9833984375, 0.984130859375, 0.984375, 0.986083984375, 0.988037109375, 0.989990234375, 0.9912109375, 0.991943359375, 0.993896484375, 0.995849609375, 0.99609375, 0.997802734375, 0.9990234375, 0.999755859375]
pattern_odd = [0.0, 0.001708984375, 0.003662109375, 0.005615234375, 0.0068359375, 0.007568359375, 0.009521484375, 0.011474609375, 0.013427734375, 0.0146484375, 0.015380859375, 0.015625, 0.017333984375, 0.019287109375, 0.021240234375, 0.0224609375, 0.023193359375, 0.025146484375, 0.027099609375, 0.02734375, 0.029052734375, 0.0302734375, 0.031005859375, 0.03125, 0.032958984375, 0.034912109375, 0.036865234375, 0.0380859375, 0.038818359375, 0.040771484375, 0.042724609375, 0.044677734375, 0.0458984375, 0.046630859375, 0.046875, 0.048583984375, 0.050537109375, 0.052490234375, 0.0537109375, 0.054443359375, 0.056396484375, 0.058349609375, 0.05859375, 0.060302734375, 0.0615234375, 0.062255859375, 0.0625, 0.064208984375, 0.066162109375, 0.068115234375, 0.0693359375, 0.070068359375, 0.072021484375, 0.073974609375, 0.075927734375, 0.0771484375, 0.077880859375, 0.078125, 0.079833984375, 0.081787109375, 0.083740234375, 0.0849609375, 0.085693359375, 0.087646484375, 0.089599609375, 0.08984375, 0.091552734375, 0.0927734375, 0.093505859375, 0.09375, 0.095458984375, 0.097412109375, 0.099365234375, 0.1005859375, 0.101318359375, 0.103271484375, 0.105224609375, 0.107177734375, 0.1083984375, 0.109130859375, 0.109375, 0.111083984375, 0.113037109375, 0.114990234375, 0.1162109375, 0.116943359375, 0.118896484375, 0.120849609375, 0.12109375, 0.122802734375, 0.1240234375, 0.124755859375, 0.125, 0.126708984375, 0.128662109375, 0.130615234375, 0.1318359375, 0.132568359375, 0.134521484375, 0.136474609375, 0.138427734375, 0.1396484375, 0.140380859375, 0.140625, 0.142333984375, 0.144287109375, 0.146240234375, 0.1474609375, 0.148193359375, 0.150146484375, 0.152099609375, 0.15234375, 0.154052734375, 0.1552734375, 0.156005859375, 0.15625, 0.157958984375, 0.159912109375, 0.161865234375, 0.1630859375, 0.163818359375, 0.165771484375, 0.167724609375, 0.169677734375, 0.1708984375, 0.171630859375, 0.171875, 0.173583984375, 0.175537109375, 0.177490234375, 0.1787109375, 0.179443359375, 0.181396484375, 0.183349609375, 0.18359375, 0.185302734375, 0.1865234375, 0.187255859375, 0.1875, 0.189208984375, 0.191162109375, 0.193115234375, 0.1943359375, 0.195068359375, 0.197021484375, 0.198974609375, 0.200927734375, 0.2021484375, 0.202880859375, 0.203125, 0.204833984375, 0.206787109375, 0.208740234375, 0.2099609375, 0.210693359375, 0.212646484375, 0.214599609375, 0.21484375, 0.216552734375, 0.2177734375, 0.218505859375, 0.21875, 0.220458984375, 0.222412109375, 0.224365234375, 0.2255859375, 0.226318359375, 0.228271484375, 0.230224609375, 0.232177734375, 0.2333984375, 0.234130859375, 0.234375, 0.236083984375, 0.238037109375, 0.239990234375, 0.2412109375, 0.241943359375, 0.243896484375, 0.245849609375, 0.24609375, 0.247802734375, 0.2490234375, 0.249755859375, 0.25, 0.251708984375, 0.253662109375, 0.255615234375, 0.2568359375, 0.257568359375, 0.259521484375, 0.261474609375, 0.263427734375, 0.2646484375, 0.265380859375, 0.265625, 0.267333984375, 0.269287109375, 0.271240234375, 0.2724609375, 0.273193359375, 0.275146484375, 0.277099609375, 0.27734375, 0.279052734375, 0.2802734375, 0.281005859375, 0.28125, 0.282958984375, 0.284912109375, 0.286865234375, 0.2880859375, 0.288818359375, 0.290771484375, 0.292724609375, 0.294677734375, 0.2958984375, 0.296630859375, 0.296875, 0.298583984375, 0.300537109375, 0.302490234375, 0.3037109375, 0.304443359375, 0.306396484375, 0.308349609375, 0.30859375, 0.310302734375, 0.3115234375, 0.312255859375, 0.3125, 0.314208984375, 0.316162109375, 0.318115234375, 0.3193359375, 0.320068359375, 0.322021484375, 0.323974609375, 0.325927734375, 0.3271484375, 0.327880859375, 0.328125, 0.329833984375, 0.331787109375, 0.333740234375, 0.3349609375, 0.335693359375, 0.337646484375, 0.339599609375, 0.33984375, 0.341552734375, 0.3427734375, 0.343505859375, 0.34375, 0.345458984375, 0.347412109375, 0.349365234375, 0.3505859375, 0.351318359375, 0.353271484375, 0.355224609375, 0.357177734375, 0.3583984375, 0.359130859375, 0.359375, 0.361083984375, 0.363037109375, 0.364990234375, 0.3662109375, 0.366943359375, 0.368896484375, 0.370849609375, 0.37109375, 0.372802734375, 0.3740234375, 0.374755859375, 0.375, 0.376708984375, 0.378662109375, 0.380615234375, 0.3818359375, 0.382568359375, 0.384521484375, 0.386474609375, 0.388427734375, 0.3896484375, 0.390380859375, 0.390625, 0.392333984375, 0.394287109375, 0.396240234375, 0.3974609375, 0.398193359375, 0.400146484375, 0.402099609375, 0.40234375, 0.404052734375, 0.4052734375, 0.406005859375, 0.40625, 0.407958984375, 0.409912109375, 0.411865234375, 0.4130859375, 0.413818359375, 0.415771484375, 0.417724609375, 0.419677734375, 0.4208984375, 0.421630859375, 0.421875, 0.423583984375, 0.425537109375, 0.427490234375, 0.4287109375, 0.429443359375, 0.431396484375, 0.433349609375, 0.43359375, 0.435302734375, 0.4365234375, 0.437255859375, 0.4375, 0.439208984375, 0.441162109375, 0.443115234375, 0.4443359375, 0.445068359375, 0.447021484375, 0.448974609375, 0.450927734375, 0.4521484375, 0.452880859375, 0.453125, 0.454833984375, 0.456787109375, 0.458740234375, 0.4599609375, 0.460693359375, 0.462646484375, 0.464599609375, 0.46484375, 0.466552734375, 0.4677734375, 0.468505859375, 0.46875, 0.470458984375, 0.472412109375, 0.474365234375, 0.4755859375, 0.476318359375, 0.478271484375, 0.480224609375, 0.482177734375, 0.4833984375, 0.484130859375, 0.484375, 0.486083984375, 0.488037109375, 0.489990234375, 0.4912109375, 0.491943359375, 0.493896484375, 0.495849609375, 0.49609375, 0.497802734375, 0.4990234375, 0.499755859375, 0.5, 0.501708984375, 0.503662109375, 0.505615234375, 0.5068359375, 0.507568359375, 0.509521484375, 0.511474609375, 0.513427734375, 0.5146484375, 0.515380859375, 0.515625, 0.517333984375, 0.519287109375, 0.521240234375, 0.5224609375, 0.523193359375, 0.525146484375, 0.527099609375, 0.52734375, 0.529052734375, 0.5302734375, 0.531005859375, 0.53125, 0.532958984375, 0.534912109375, 0.536865234375, 0.5380859375, 0.538818359375, 0.540771484375, 0.542724609375, 0.544677734375, 0.5458984375, 0.546630859375, 0.546875, 0.548583984375, 0.550537109375, 0.552490234375, 0.5537109375, 0.554443359375, 0.556396484375, 0.558349609375, 0.55859375, 0.560302734375, 0.5615234375, 0.562255859375, 0.5625, 0.564208984375, 0.566162109375, 0.568115234375, 0.5693359375, 0.570068359375, 0.572021484375, 0.573974609375, 0.575927734375, 0.5771484375, 0.577880859375, 0.578125, 0.579833984375, 0.581787109375, 0.583740234375, 0.5849609375, 0.585693359375, 0.587646484375, 0.589599609375, 0.58984375, 0.591552734375, 0.5927734375, 0.593505859375, 0.59375, 0.595458984375, 0.597412109375, 0.599365234375, 0.6005859375, 0.601318359375, 0.603271484375, 0.605224609375, 0.607177734375, 0.6083984375, 0.609130859375, 0.609375, 0.611083984375, 0.613037109375, 0.614990234375, 0.6162109375, 0.616943359375, 0.618896484375, 0.620849609375, 0.62109375, 0.622802734375, 0.6240234375, 0.624755859375, 0.625, 0.626708984375, 0.628662109375, 0.630615234375, 0.6318359375, 0.632568359375, 0.634521484375, 0.636474609375, 0.638427734375, 0.6396484375, 0.640380859375, 0.640625, 0.642333984375, 0.644287109375, 0.646240234375, 0.6474609375, 0.648193359375, 0.650146484375, 0.652099609375, 0.65234375, 0.654052734375, 0.6552734375, 0.656005859375, 0.65625, 0.657958984375, 0.659912109375, 0.661865234375, 0.6630859375, 0.663818359375, 0.665771484375, 0.667724609375, 0.669677734375, 0.6708984375, 0.671630859375, 0.671875, 0.673583984375, 0.675537109375, 0.677490234375, 0.6787109375, 0.679443359375, 0.681396484375, 0.683349609375, 0.68359375, 0.685302734375, 0.6865234375, 0.687255859375, 0.6875, 0.689208984375, 0.691162109375, 0.693115234375, 0.6943359375, 0.695068359375, 0.697021484375, 0.698974609375, 0.700927734375, 0.7021484375, 0.702880859375, 0.703125, 0.704833984375, 0.706787109375, 0.708740234375, 0.7099609375, 0.710693359375, 0.712646484375, 0.714599609375, 0.71484375, 0.716552734375, 0.7177734375, 0.718505859375, 0.71875, 0.720458984375, 0.722412109375, 0.724365234375, 0.7255859375, 0.726318359375, 0.728271484375, 0.730224609375, 0.732177734375, 0.7333984375, 0.734130859375, 0.734375, 0.736083984375, 0.738037109375, 0.739990234375, 0.7412109375, 0.741943359375, 0.743896484375, 0.745849609375, 0.74609375, 0.747802734375, 0.7490234375, 0.749755859375, 0.75, 0.751708984375, 0.753662109375, 0.755615234375, 0.7568359375, 0.757568359375, 0.759521484375, 0.761474609375, 0.763427734375, 0.7646484375, 0.765380859375, 0.765625, 0.767333984375, 0.769287109375, 0.771240234375, 0.7724609375, 0.773193359375, 0.775146484375, 0.777099609375, 0.77734375, 0.779052734375, 0.7802734375, 0.781005859375, 0.78125, 0.782958984375, 0.784912109375, 0.786865234375, 0.7880859375, 0.788818359375, 0.790771484375, 0.792724609375, 0.794677734375, 0.7958984375, 0.796630859375, 0.796875, 0.798583984375, 0.800537109375, 0.802490234375, 0.8037109375, 0.804443359375, 0.806396484375, 0.808349609375, 0.80859375, 0.810302734375, 0.8115234375, 0.812255859375, 0.8125, 0.814208984375, 0.816162109375, 0.818115234375, 0.8193359375, 0.820068359375, 0.822021484375, 0.823974609375, 0.825927734375, 0.8271484375, 0.827880859375, 0.828125, 0.829833984375, 0.831787109375, 0.833740234375, 0.8349609375, 0.835693359375, 0.837646484375, 0.839599609375, 0.83984375, 0.841552734375, 0.8427734375, 0.843505859375, 0.84375, 0.845458984375, 0.847412109375, 0.849365234375, 0.8505859375, 0.851318359375, 0.853271484375, 0.855224609375, 0.857177734375, 0.8583984375, 0.859130859375, 0.859375, 0.861083984375, 0.863037109375, 0.864990234375, 0.8662109375, 0.866943359375, 0.868896484375, 0.870849609375, 0.87109375, 0.872802734375, 0.8740234375, 0.874755859375, 0.875, 0.876708984375, 0.878662109375, 0.880615234375, 0.8818359375, 0.882568359375, 0.884521484375, 0.886474609375, 0.888427734375, 0.8896484375, 0.890380859375, 0.890625, 0.892333984375, 0.894287109375, 0.896240234375, 0.8974609375, 0.898193359375, 0.900146484375, 0.902099609375, 0.90234375, 0.904052734375, 0.9052734375, 0.906005859375, 0.90625, 0.907958984375, 0.909912109375, 0.911865234375, 0.9130859375, 0.913818359375, 0.915771484375, 0.917724609375, 0.919677734375, 0.9208984375, 0.921630859375, 0.921875, 0.923583984375, 0.925537109375, 0.927490234375, 0.9287109375, 0.929443359375, 0.931396484375, 0.933349609375, 0.93359375, 0.935302734375, 0.9365234375, 0.937255859375, 0.9375, 0.939208984375, 0.941162109375, 0.943115234375, 0.9443359375, 0.945068359375, 0.947021484375, 0.948974609375, 0.950927734375, 0.9521484375, 0.952880859375, 0.953125, 0.954833984375, 0.956787109375, 0.958740234375, 0.9599609375, 0.960693359375, 0.962646484375, 0.964599609375, 0.96484375, 0.966552734375, 0.9677734375, 0.968505859375, 0.96875, 0.970458984375, 0.972412109375, 0.974365234375, 0.9755859375, 0.976318359375, 0.978271484375, 0.980224609375, 0.982177734375, 0.9833984375, 0.984130859375, 0.984375, 0.986083984375, 0.988037109375, 0.989990234375, 0.9912109375, 0.991943359375, 0.993896484375, 0.995849609375, 0.99609375, 0.997802734375, 0.9990234375, 0.999755859375]
pattern_even = [0.0, 0.001708984375, 0.003662109375, 0.005615234375, 0.0068359375, 0.007568359375, 0.009521484375, 0.011474609375, 0.013427734375, 0.0146484375, 0.015380859375, 0.015625, 0.017333984375, 0.019287109375, 0.021240234375, 0.0224609375, 0.023193359375, 0.025146484375, 0.027099609375, 0.02734375, 0.029052734375, 0.0302734375, 0.031005859375, 0.03125, 0.032958984375, 0.034912109375, 0.036865234375, 0.0380859375, 0.038818359375, 0.040771484375, 0.042724609375, 0.044677734375, 0.0458984375, 0.046630859375, 0.046875, 0.048583984375, 0.050537109375, 0.052490234375, 0.0537109375, 0.054443359375, 0.056396484375, 0.058349609375, 0.05859375, 0.060302734375, 0.0615234375, 0.062255859375, 0.0625, 0.064208984375, 0.066162109375, 0.068115234375, 0.0693359375, 0.070068359375, 0.072021484375, 0.073974609375, 0.075927734375, 0.0771484375, 0.077880859375, 0.078125, 0.079833984375, 0.081787109375, 0.083740234375, 0.0849609375, 0.085693359375, 0.087646484375, 0.089599609375, 0.08984375, 0.091552734375, 0.0927734375, 0.093505859375, 0.09375, 0.095458984375, 0.097412109375, 0.099365234375, 0.1005859375, 0.101318359375, 0.103271484375, 0.105224609375, 0.107177734375, 0.1083984375, 0.109130859375, 0.109375, 0.111083984375, 0.113037109375, 0.114990234375, 0.1162109375, 0.116943359375, 0.118896484375, 0.120849609375, 0.12109375, 0.122802734375, 0.1240234375, 0.124755859375, 0.125, 0.126708984375, 0.128662109375, 0.130615234375, 0.1318359375, 0.132568359375, 0.134521484375, 0.136474609375, 0.138427734375, 0.1396484375, 0.140380859375, 0.140625, 0.142333984375, 0.144287109375, 0.146240234375, 0.1474609375, 0.148193359375, 0.150146484375, 0.152099609375, 0.15234375, 0.154052734375, 0.1552734375, 0.156005859375, 0.15625, 0.157958984375, 0.159912109375, 0.161865234375, 0.1630859375, 0.163818359375, 0.165771484375, 0.167724609375, 0.169677734375, 0.1708984375, 0.171630859375, 0.171875, 0.173583984375, 0.175537109375, 0.177490234375, 0.1787109375, 0.179443359375, 0.181396484375, 0.183349609375, 0.18359375, 0.185302734375, 0.1865234375, 0.187255859375, 0.1875, 0.189208984375, 0.191162109375, 0.193115234375, 0.1943359375, 0.195068359375, 0.197021484375, 0.198974609375, 0.200927734375, 0.2021484375, 0.202880859375, 0.203125, 0.204833984375, 0.206787109375, 0.208740234375, 0.2099609375, 0.210693359375, 0.212646484375, 0.214599609375, 0.21484375, 0.216552734375, 0.2177734375, 0.218505859375, 0.21875, 0.220458984375, 0.222412109375, 0.224365234375, 0.2255859375, 0.226318359375, 0.228271484375, 0.230224609375, 0.232177734375, 0.2333984375, 0.234130859375, 0.234375, 0.236083984375, 0.238037109375, 0.239990234375, 0.2412109375, 0.241943359375, 0.243896484375, 0.245849609375, 0.24609375, 0.247802734375, 0.2490234375, 0.249755859375, 0.25, 0.251708984375, 0.253662109375, 0.255615234375, 0.2568359375, 0.257568359375, 0.259521484375, 0.261474609375, 0.263427734375, 0.2646484375, 0.265380859375, 0.265625, 0.267333984375, 0.269287109375, 0.271240234375, 0.2724609375, 0.273193359375, 0.275146484375, 0.277099609375, 0.27734375, 0.279052734375, 0.2802734375, 0.281005859375, 0.28125, 0.282958984375, 0.284912109375, 0.286865234375, 0.2880859375, 0.288818359375, 0.290771484375, 0.292724609375, 0.294677734375, 0.2958984375, 0.296630859375, 0.296875, 0.298583984375, 0.300537109375, 0.302490234375, 0.3037109375, 0.304443359375, 0.306396484375, 0.308349609375, 0.30859375, 0.310302734375, 0.3115234375, 0.312255859375, 0.3125, 0.314208984375, 0.316162109375, 0.318115234375, 0.3193359375, 0.320068359375, 0.322021484375, 0.323974609375, 0.325927734375, 0.3271484375, 0.327880859375, 0.328125, 0.329833984375, 0.331787109375, 0.333740234375, 0.3349609375, 0.335693359375, 0.337646484375, 0.339599609375, 0.33984375, 0.341552734375, 0.3427734375, 0.343505859375, 0.34375, 0.345458984375, 0.347412109375, 0.349365234375, 0.3505859375, 0.351318359375, 0.353271484375, 0.355224609375, 0.357177734375, 0.3583984375, 0.359130859375, 0.359375, 0.361083984375, 0.363037109375, 0.364990234375, 0.3662109375, 0.366943359375, 0.368896484375, 0.370849609375, 0.37109375, 0.372802734375, 0.3740234375, 0.374755859375, 0.375, 0.376708984375, 0.378662109375, 0.380615234375, 0.3818359375, 0.382568359375, 0.384521484375, 0.386474609375, 0.388427734375, 0.3896484375, 0.390380859375, 0.390625, 0.392333984375, 0.394287109375, 0.396240234375, 0.3974609375, 0.398193359375, 0.400146484375, 0.402099609375, 0.40234375, 0.404052734375, 0.4052734375, 0.406005859375, 0.40625, 0.407958984375, 0.409912109375, 0.411865234375, 0.4130859375, 0.413818359375, 0.415771484375, 0.417724609375, 0.419677734375, 0.4208984375, 0.421630859375, 0.421875, 0.423583984375, 0.425537109375, 0.427490234375, 0.4287109375, 0.429443359375, 0.431396484375, 0.433349609375, 0.43359375, 0.435302734375, 0.4365234375, 0.437255859375, 0.4375, 0.439208984375, 0.441162109375, 0.443115234375, 0.4443359375, 0.445068359375, 0.447021484375, 0.448974609375, 0.450927734375, 0.4521484375, 0.452880859375, 0.453125, 0.454833984375, 0.456787109375, 0.458740234375, 0.4599609375, 0.460693359375, 0.462646484375, 0.464599609375, 0.46484375, 0.466552734375, 0.4677734375, 0.468505859375, 0.46875, 0.470458984375, 0.472412109375, 0.474365234375, 0.4755859375, 0.476318359375, 0.478271484375, 0.480224609375, 0.482177734375, 0.4833984375, 0.484130859375, 0.484375, 0.486083984375, 0.488037109375, 0.489990234375, 0.4912109375, 0.491943359375, 0.493896484375, 0.495849609375, 0.49609375, 0.497802734375, 0.4990234375, 0.499755859375, 0.5, 0.501708984375, 0.503662109375, 0.505615234375, 0.5068359375, 0.507568359375, 0.509521484375, 0.511474609375, 0.513427734375, 0.5146484375, 0.515380859375, 0.515625, 0.517333984375, 0.519287109375, 0.521240234375, 0.5224609375, 0.523193359375, 0.525146484375, 0.527099609375, 0.52734375, 0.529052734375, 0.5302734375, 0.531005859375, 0.53125, 0.532958984375, 0.534912109375, 0.536865234375, 0.5380859375, 0.538818359375, 0.540771484375, 0.542724609375, 0.544677734375, 0.5458984375, 0.546630859375, 0.546875, 0.548583984375, 0.550537109375, 0.552490234375, 0.5537109375, 0.554443359375, 0.556396484375, 0.558349609375, 0.55859375, 0.560302734375, 0.5615234375, 0.562255859375, 0.5625, 0.564208984375, 0.566162109375, 0.568115234375, 0.5693359375, 0.570068359375, 0.572021484375, 0.573974609375, 0.575927734375, 0.5771484375, 0.577880859375, 0.578125, 0.579833984375, 0.581787109375, 0.583740234375, 0.5849609375, 0.585693359375, 0.587646484375, 0.589599609375, 0.58984375, 0.591552734375, 0.5927734375, 0.593505859375, 0.59375, 0.595458984375, 0.597412109375, 0.599365234375, 0.6005859375, 0.601318359375, 0.603271484375, 0.605224609375, 0.607177734375, 0.6083984375, 0.609130859375, 0.609375, 0.611083984375, 0.613037109375, 0.614990234375, 0.6162109375, 0.616943359375, 0.618896484375, 0.620849609375, 0.62109375, 0.622802734375, 0.6240234375, 0.624755859375, 0.625, 0.626708984375, 0.628662109375, 0.630615234375, 0.6318359375, 0.632568359375, 0.634521484375, 0.636474609375, 0.638427734375, 0.6396484375, 0.640380859375, 0.640625, 0.642333984375, 0.644287109375, 0.646240234375, 0.6474609375, 0.648193359375, 0.650146484375, 0.652099609375, 0.65234375, 0.654052734375, 0.6552734375, 0.656005859375, 0.65625, 0.657958984375, 0.659912109375, 0.661865234375, 0.6630859375, 0.663818359375, 0.665771484375, 0.667724609375, 0.669677734375, 0.6708984375, 0.671630859375, 0.671875, 0.673583984375, 0.675537109375, 0.677490234375, 0.6787109375, 0.679443359375, 0.681396484375, 0.683349609375, 0.68359375, 0.685302734375, 0.6865234375, 0.687255859375, 0.6875, 0.689208984375, 0.691162109375, 0.693115234375, 0.6943359375, 0.695068359375, 0.697021484375, 0.698974609375, 0.700927734375, 0.7021484375, 0.702880859375, 0.703125, 0.704833984375, 0.706787109375, 0.708740234375, 0.7099609375, 0.710693359375, 0.712646484375, 0.714599609375, 0.71484375, 0.716552734375, 0.7177734375, 0.718505859375, 0.71875, 0.720458984375, 0.722412109375, 0.724365234375, 0.7255859375, 0.726318359375, 0.728271484375, 0.730224609375, 0.732177734375, 0.7333984375, 0.734130859375, 0.734375, 0.736083984375, 0.738037109375, 0.739990234375, 0.7412109375, 0.741943359375, 0.743896484375, 0.745849609375, 0.74609375, 0.747802734375, 0.7490234375, 0.749755859375, 0.75, 0.751708984375, 0.753662109375, 0.755615234375, 0.7568359375, 0.757568359375, 0.759521484375, 0.761474609375, 0.763427734375, 0.7646484375, 0.765380859375, 0.765625, 0.767333984375, 0.769287109375, 0.771240234375, 0.7724609375, 0.773193359375, 0.775146484375, 0.777099609375, 0.77734375, 0.779052734375, 0.7802734375, 0.781005859375, 0.78125, 0.782958984375, 0.784912109375, 0.786865234375, 0.7880859375, 0.788818359375, 0.790771484375, 0.792724609375, 0.794677734375, 0.7958984375, 0.796630859375, 0.796875, 0.798583984375, 0.800537109375, 0.802490234375, 0.8037109375, 0.804443359375, 0.806396484375, 0.808349609375, 0.80859375, 0.810302734375, 0.8115234375, 0.812255859375, 0.8125, 0.814208984375, 0.816162109375, 0.818115234375, 0.8193359375, 0.820068359375, 0.822021484375, 0.823974609375, 0.825927734375, 0.8271484375, 0.827880859375, 0.828125, 0.829833984375, 0.831787109375, 0.833740234375, 0.8349609375, 0.835693359375, 0.837646484375, 0.839599609375, 0.83984375, 0.841552734375, 0.8427734375, 0.843505859375, 0.84375, 0.845458984375, 0.847412109375, 0.849365234375, 0.8505859375, 0.851318359375, 0.853271484375, 0.855224609375, 0.857177734375, 0.8583984375, 0.859130859375, 0.859375, 0.861083984375, 0.863037109375, 0.864990234375, 0.8662109375, 0.866943359375, 0.868896484375, 0.870849609375, 0.87109375, 0.872802734375, 0.8740234375, 0.874755859375, 0.875, 0.876708984375, 0.878662109375, 0.880615234375, 0.8818359375, 0.882568359375, 0.884521484375, 0.886474609375, 0.888427734375, 0.8896484375, 0.890380859375, 0.890625, 0.892333984375, 0.894287109375, 0.896240234375, 0.8974609375, 0.898193359375, 0.900146484375, 0.902099609375, 0.90234375, 0.904052734375, 0.9052734375, 0.906005859375, 0.90625, 0.907958984375, 0.909912109375, 0.911865234375, 0.9130859375, 0.913818359375, 0.915771484375, 0.917724609375, 0.919677734375, 0.9208984375, 0.921630859375, 0.921875, 0.923583984375, 0.925537109375, 0.927490234375, 0.9287109375, 0.929443359375, 0.931396484375, 0.933349609375, 0.93359375, 0.935302734375, 0.9365234375, 0.937255859375, 0.9375, 0.939208984375, 0.941162109375, 0.943115234375, 0.9443359375, 0.945068359375, 0.947021484375, 0.948974609375, 0.950927734375, 0.9521484375, 0.952880859375, 0.953125, 0.954833984375, 0.956787109375, 0.958740234375, 0.9599609375, 0.960693359375, 0.962646484375, 0.964599609375, 0.96484375, 0.966552734375, 0.9677734375, 0.968505859375, 0.96875, 0.970458984375, 0.972412109375, 0.974365234375, 0.9755859375, 0.976318359375, 0.978271484375, 0.980224609375, 0.982177734375, 0.9833984375, 0.984130859375, 0.984375, 0.986083984375, 0.988037109375, 0.989990234375, 0.9912109375, 0.991943359375, 0.993896484375, 0.995849609375, 0.99609375, 0.997802734375, 0.9990234375, 0.999755859375]
averages_even = {0.0: [0.25, 0.5, 0.75, 0.0], 0.001708984375: [0.328125, 0.671875], 0.216552734375: [0.453125, 0.546875], 0.974365234375: [0.796875, 0.203125], 0.0068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.029052734375: [0.453125, 0.546875], 0.505615234375: [0.796875, 0.203125], 0.0693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.681396484375: [0.421875, 0.578125], 0.425537109375: [0.390625, 0.609375], 0.732177734375: [0.953125, 0.046875], 0.892333984375: [0.828125, 0.171875], 0.5380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.915771484375: [0.921875, 0.078125], 0.5: [0.5, 0.75, 0.0, 0.25], 0.4208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.800537109375: [0.390625, 0.609375], 0.595458984375: [0.671875, 0.328125], 0.493896484375: [0.421875, 0.578125], 0.052490234375: [0.296875, 0.703125], 0.966552734375: [0.453125, 0.546875], 0.558349609375: [0.859375, 0.140625], 0.007568359375: [0.265625, 0.734375], 0.937255859375: [0.484375, 0.515625], 0.372802734375: [0.453125, 0.546875], 0.148193359375: [0.234375, 0.765625], 0.568115234375: [0.796875, 0.203125], 0.8115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.695068359375: [0.734375, 0.265625], 0.65625: [0.5, 0.75, 0.0, 0.25], 0.251708984375: [0.328125, 0.671875], 0.441162109375: [0.890625, 0.109375], 0.40234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.154052734375: [0.453125, 0.546875], 0.081787109375: [0.390625, 0.609375], 0.650146484375: [0.421875, 0.578125], 0.5693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.4365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.831787109375: [0.390625, 0.609375], 0.320068359375: [0.265625, 0.734375], 0.28125: [0.25, 0.5, 0.75, 0.0], 0.7802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.625: [0.5, 0.75, 0.0, 0.25], 0.054443359375: [0.234375, 0.765625], 0.589599609375: [0.859375, 0.140625], 0.968505859375: [0.484375, 0.515625], 0.388427734375: [0.953125, 0.046875], 0.156005859375: [0.484375, 0.515625], 0.8427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.507568359375: [0.734375, 0.265625], 0.0771484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.267333984375: [0.828125, 0.171875], 0.456787109375: [0.390625, 0.609375], 0.794677734375: [0.953125, 0.046875], 0.085693359375: [0.765625, 0.234375], 0.6005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.53125: [0.5, 0.75, 0.0, 0.25], 0.24609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.4521484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.863037109375: [0.390625, 0.609375], 0.335693359375: [0.765625, 0.234375], 0.296875: [0.375, 0.625, 0.875, 0.125], 0.552490234375: [0.703125, 0.296875], 0.224365234375: [0.796875, 0.203125], 0.620849609375: [0.859375, 0.140625], 0.1240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.999755859375: [0.484375, 0.515625], 0.404052734375: [0.453125, 0.546875], 0.163818359375: [0.265625, 0.734375], 0.759521484375: [0.921875, 0.078125], 0.125: [0.25, 0.5, 0.75, 0.0], 0.8740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.757568359375: [0.734375, 0.265625], 0.71875: [0.5, 0.75, 0.0, 0.25], 0.282958984375: [0.328125, 0.671875], 0.015380859375: [0.984375, 0.015625], 0.825927734375: [0.953125, 0.046875], 0.089599609375: [0.859375, 0.140625], 0.407958984375: [0.328125, 0.671875], 0.4677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.894287109375: [0.390625, 0.609375], 0.351318359375: [0.734375, 0.265625], 0.3125: [0.25, 0.5, 0.75, 0.0], 0.583740234375: [0.703125, 0.296875], 0.665771484375: [0.921875, 0.078125], 0.232177734375: [0.953125, 0.046875], 0.017333984375: [0.828125, 0.171875], 0.652099609375: [0.859375, 0.140625], 0.814208984375: [0.671875, 0.328125], 0.419677734375: [0.953125, 0.046875], 0.171630859375: [0.984375, 0.015625], 0.9052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.509521484375: [0.921875, 0.078125], 0.0849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.009521484375: [0.921875, 0.078125], 0.736083984375: [0.828125, 0.171875], 0.488037109375: [0.390625, 0.609375], 0.857177734375: [0.953125, 0.046875], 0.093505859375: [0.484375, 0.515625], 0.236083984375: [0.828125, 0.171875], 0.6630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.546630859375: [0.984375, 0.015625], 0.4833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.925537109375: [0.390625, 0.609375], 0.208740234375: [0.296875, 0.703125], 0.328125: [0.375, 0.625, 0.875, 0.125], 0.614990234375: [0.296875, 0.703125], 0.048583984375: [0.828125, 0.171875], 0.239990234375: [0.296875, 0.703125], 0.683349609375: [0.859375, 0.140625], 0.572021484375: [0.921875, 0.078125], 0.806396484375: [0.421875, 0.578125], 0.435302734375: [0.453125, 0.546875], 0.179443359375: [0.765625, 0.234375], 0.140625: [0.375, 0.625, 0.875, 0.125], 0.9365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.820068359375: [0.734375, 0.265625], 0.78125: [0.5, 0.75, 0.0, 0.25], 0.314208984375: [0.328125, 0.671875], 0.46484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.097412109375: [0.890625, 0.109375], 0.6943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.577880859375: [0.984375, 0.015625], 0.566162109375: [0.890625, 0.109375], 0.4990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.956787109375: [0.390625, 0.609375], 0.382568359375: [0.734375, 0.265625], 0.34375: [0.5, 0.75, 0.0, 0.25], 0.646240234375: [0.703125, 0.296875], 0.626708984375: [0.328125, 0.671875], 0.247802734375: [0.453125, 0.546875], 0.714599609375: [0.859375, 0.140625], 0.261474609375: [0.359375, 0.640625], 0.02734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.7568359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.450927734375: [0.953125, 0.046875], 0.187255859375: [0.484375, 0.515625], 0.2568359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.0458984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.9677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.511474609375: [0.359375, 0.640625], 0.0927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.329833984375: [0.828125, 0.171875], 0.126708984375: [0.328125, 0.671875], 0.919677734375: [0.953125, 0.046875], 0.101318359375: [0.265625, 0.734375], 0.161865234375: [0.796875, 0.203125], 0.7255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.609130859375: [0.984375, 0.015625], 0.0625: [0.25, 0.5, 0.75, 0.0], 0.579833984375: [0.828125, 0.171875], 0.988037109375: [0.390625, 0.609375], 0.398193359375: [0.765625, 0.234375], 0.359375: [0.375, 0.625, 0.875, 0.125], 0.677490234375: [0.703125, 0.296875], 0.745849609375: [0.859375, 0.140625], 0.277099609375: [0.859375, 0.140625], 0.466552734375: [0.453125, 0.546875], 0.195068359375: [0.265625, 0.734375], 0.15625: [0.25, 0.5, 0.75, 0.0], 0.2724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.822021484375: [0.921875, 0.078125], 0.9990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.882568359375: [0.734375, 0.265625], 0.84375: [0.5, 0.75, 0.0, 0.25], 0.345458984375: [0.328125, 0.671875], 0.134521484375: [0.921875, 0.078125], 0.49609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.950927734375: [0.953125, 0.046875], 0.105224609375: [0.359375, 0.640625], 0.363037109375: [0.390625, 0.609375], 0.640380859375: [0.984375, 0.015625], 0.413818359375: [0.734375, 0.265625], 0.375: [0.5, 0.75, 0.0, 0.25], 0.708740234375: [0.703125, 0.296875], 0.763427734375: [0.953125, 0.046875], 0.777099609375: [0.859375, 0.140625], 0.292724609375: [0.359375, 0.640625], 0.43359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.482177734375: [0.953125, 0.046875], 0.202880859375: [0.984375, 0.015625], 0.790771484375: [0.921875, 0.078125], 0.534912109375: [0.890625, 0.109375], 0.663818359375: [0.734375, 0.265625], 0.513427734375: [0.953125, 0.046875], 0.1005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.361083984375: [0.828125, 0.171875], 0.603271484375: [0.921875, 0.078125], 0.0615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.109130859375: [0.984375, 0.015625], 0.7880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.671630859375: [0.984375, 0.015625], 0.429443359375: [0.765625, 0.234375], 0.390625: [0.375, 0.625, 0.875, 0.125], 0.739990234375: [0.703125, 0.296875], 0.5458984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.808349609375: [0.859375, 0.140625], 0.845458984375: [0.671875, 0.328125], 0.077880859375: [0.984375, 0.015625], 0.861083984375: [0.828125, 0.171875], 0.497802734375: [0.453125, 0.546875], 0.210693359375: [0.234375, 0.765625], 0.3037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.548583984375: [0.828125, 0.171875], 0.945068359375: [0.734375, 0.265625], 0.90625: [0.5, 0.75, 0.0, 0.25], 0.376708984375: [0.328125, 0.671875], 0.150146484375: [0.421875, 0.578125], 0.113037109375: [0.390625, 0.609375], 0.8193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.255615234375: [0.796875, 0.203125], 0.445068359375: [0.265625, 0.734375], 0.40625: [0.5, 0.75, 0.0, 0.25], 0.771240234375: [0.703125, 0.296875], 0.900146484375: [0.421875, 0.578125], 0.5771484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.839599609375: [0.859375, 0.140625], 0.323974609375: [0.359375, 0.640625], 0.913818359375: [0.734375, 0.265625], 0.875: [0.5, 0.75, 0.0, 0.25], 0.218505859375: [0.484375, 0.515625], 0.3193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.597412109375: [0.890625, 0.109375], 0.55859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.515380859375: [0.984375, 0.015625], 0.9375: [0.5, 0.75, 0.0, 0.25], 0.392333984375: [0.828125, 0.171875], 0.157958984375: [0.328125, 0.671875], 0.116943359375: [0.234375, 0.765625], 0.8505859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.734130859375: [0.984375, 0.015625], 0.078125: [0.375, 0.625, 0.875, 0.125], 0.954833984375: [0.828125, 0.171875], 0.634521484375: [0.921875, 0.078125], 0.460693359375: [0.765625, 0.234375], 0.421875: [0.375, 0.625, 0.875, 0.125], 0.802490234375: [0.703125, 0.296875], 0.6083984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.870849609375: [0.859375, 0.140625], 0.339599609375: [0.859375, 0.140625], 0.982177734375: [0.953125, 0.046875], 0.560302734375: [0.453125, 0.546875], 0.09375: [0.25, 0.5, 0.75, 0.0], 0.226318359375: [0.265625, 0.734375], 0.1875: [0.25, 0.5, 0.75, 0.0], 0.021240234375: [0.296875, 0.703125], 0.628662109375: [0.890625, 0.109375], 0.58984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.704833984375: [0.828125, 0.171875], 0.96875: [0.5, 0.75, 0.0, 0.25], 0.165771484375: [0.921875, 0.078125], 0.120849609375: [0.859375, 0.140625], 0.271240234375: [0.296875, 0.703125], 0.169677734375: [0.953125, 0.046875], 0.286865234375: [0.796875, 0.203125], 0.046630859375: [0.984375, 0.015625], 0.476318359375: [0.734375, 0.265625], 0.4375: [0.5, 0.75, 0.0, 0.25], 0.833740234375: [0.703125, 0.296875], 0.6396484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.6875: [0.5, 0.75, 0.0, 0.25], 0.902099609375: [0.859375, 0.140625], 0.355224609375: [0.359375, 0.640625], 0.591552734375: [0.453125, 0.546875], 0.234130859375: [0.984375, 0.015625], 0.3505859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.659912109375: [0.890625, 0.109375], 0.62109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.517333984375: [0.828125, 0.171875], 0.1162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.013427734375: [0.953125, 0.046875], 0.173583984375: [0.828125, 0.171875], 0.767333984375: [0.828125, 0.171875], 0.124755859375: [0.484375, 0.515625], 0.245849609375: [0.859375, 0.140625], 0.9130859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.796630859375: [0.984375, 0.015625], 0.302490234375: [0.296875, 0.703125], 0.491943359375: [0.765625, 0.234375], 0.453125: [0.375, 0.625, 0.875, 0.125], 0.864990234375: [0.703125, 0.296875], 0.6708984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.554443359375: [0.765625, 0.234375], 0.933349609375: [0.859375, 0.140625], 0.370849609375: [0.859375, 0.140625], 0.622802734375: [0.453125, 0.546875], 0.064208984375: [0.328125, 0.671875], 0.005615234375: [0.796875, 0.203125], 0.241943359375: [0.765625, 0.234375], 0.203125: [0.375, 0.625, 0.875, 0.125], 0.3662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.691162109375: [0.890625, 0.109375], 0.65234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.962646484375: [0.421875, 0.578125], 0.439208984375: [0.328125, 0.671875], 0.181396484375: [0.421875, 0.578125], 0.015625: [0.375, 0.625, 0.875, 0.125], 0.796875: [0.375, 0.625, 0.875, 0.125], 0.21484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.9443359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.827880859375: [0.984375, 0.015625], 0.08984375: [0.1875, 0.3125, 0.6875, 0.9375, 0.0625, 0.4375, 0.5625, 0.8125], 0.318115234375: [0.796875, 0.203125], 0.538818359375: [0.734375, 0.265625], 0.6552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.986083984375: [0.828125, 0.171875], 0.46875: [0.5, 0.75, 0.0, 0.25], 0.896240234375: [0.703125, 0.296875], 0.7021484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.585693359375: [0.765625, 0.234375], 0.546875: [0.375, 0.625, 0.875, 0.125], 0.964599609375: [0.859375, 0.140625], 0.386474609375: [0.359375, 0.640625], 0.654052734375: [0.453125, 0.546875], 0.068115234375: [0.796875, 0.203125], 0.618896484375: [0.421875, 0.578125], 0.4052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.019287109375: [0.390625, 0.609375], 0.249755859375: [0.484375, 0.515625], 0.3818359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.722412109375: [0.890625, 0.109375], 0.68359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.265380859375: [0.984375, 0.015625], 0.519287109375: [0.390625, 0.609375], 0.454833984375: [0.828125, 0.171875], 0.189208984375: [0.328125, 0.671875], 0.9755859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.859130859375: [0.984375, 0.015625], 0.333740234375: [0.296875, 0.703125], 0.128662109375: [0.890625, 0.109375], 0.689208984375: [0.671875, 0.328125], 0.484375: [0.375, 0.625, 0.875, 0.125], 0.927490234375: [0.703125, 0.296875], 0.056396484375: [0.421875, 0.578125], 0.7333984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.616943359375: [0.765625, 0.234375], 0.578125: [0.375, 0.625, 0.875, 0.125], 0.995849609375: [0.859375, 0.140625], 0.402099609375: [0.859375, 0.140625], 0.685302734375: [0.453125, 0.546875], 0.072021484375: [0.921875, 0.078125], 0.1083984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.21875: [0.25, 0.5, 0.75, 0.0], 0.3974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.753662109375: [0.890625, 0.109375], 0.71484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.281005859375: [0.484375, 0.515625], 0.470458984375: [0.328125, 0.671875], 0.197021484375: [0.921875, 0.078125], 0.931396484375: [0.421875, 0.578125], 0.304443359375: [0.765625, 0.234375], 0.890380859375: [0.984375, 0.015625], 0.349365234375: [0.796875, 0.203125], 0.702880859375: [0.984375, 0.015625], 0.136474609375: [0.359375, 0.640625], 0.958740234375: [0.703125, 0.296875], 0.7646484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.648193359375: [0.765625, 0.234375], 0.609375: [0.375, 0.625, 0.875, 0.125], 0.829833984375: [0.828125, 0.171875], 0.417724609375: [0.359375, 0.640625], 0.716552734375: [0.453125, 0.546875], 0.075927734375: [0.953125, 0.046875], 0.1318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.265625: [0.375, 0.625, 0.875, 0.125], 0.2958984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.4130859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.784912109375: [0.890625, 0.109375], 0.74609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.2880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.773193359375: [0.765625, 0.234375], 0.521240234375: [0.703125, 0.296875], 0.486083984375: [0.828125, 0.171875], 0.204833984375: [0.828125, 0.171875], 0.542724609375: [0.359375, 0.640625], 0.921630859375: [0.984375, 0.015625], 0.364990234375: [0.296875, 0.703125], 0.144287109375: [0.390625, 0.609375], 0.989990234375: [0.703125, 0.296875], 0.7958984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.679443359375: [0.765625, 0.234375], 0.640625: [0.375, 0.625, 0.875, 0.125], 0.433349609375: [0.859375, 0.140625], 0.747802734375: [0.453125, 0.546875], 0.079833984375: [0.828125, 0.171875], 0.1396484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.5537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.234375: [0.375, 0.625, 0.875, 0.125], 0.027099609375: [0.859375, 0.140625], 0.296630859375: [0.984375, 0.015625], 0.77734375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.312255859375: [0.484375, 0.515625], 0.212646484375: [0.421875, 0.578125], 0.573974609375: [0.359375, 0.640625], 0.5146484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.380615234375: [0.796875, 0.203125], 0.152099609375: [0.859375, 0.140625], 0.472412109375: [0.890625, 0.109375], 0.710693359375: [0.765625, 0.234375], 0.671875: [0.375, 0.625, 0.875, 0.125], 0.259521484375: [0.921875, 0.078125], 0.6318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.448974609375: [0.359375, 0.640625], 0.779052734375: [0.453125, 0.546875], 0.083740234375: [0.296875, 0.703125], 0.1474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.5849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.673583984375: [0.828125, 0.171875], 0.4443359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.847412109375: [0.890625, 0.109375], 0.80859375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.327880859375: [0.984375, 0.015625], 0.853271484375: [0.921875, 0.078125], 0.536865234375: [0.796875, 0.203125], 0.523193359375: [0.765625, 0.234375], 0.976318359375: [0.734375, 0.265625], 0.220458984375: [0.328125, 0.671875], 0.130615234375: [0.796875, 0.203125], 0.556396484375: [0.421875, 0.578125], 0.515625: [0.375, 0.625, 0.875, 0.125], 0.109375: [0.375, 0.625, 0.875, 0.125], 0.396240234375: [0.296875, 0.703125], 0.159912109375: [0.890625, 0.109375], 0.743896484375: [0.421875, 0.578125], 0.8583984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.741943359375: [0.765625, 0.234375], 0.703125: [0.375, 0.625, 0.875, 0.125], 0.275146484375: [0.421875, 0.578125], 0.111083984375: [0.828125, 0.171875], 0.464599609375: [0.859375, 0.140625], 0.810302734375: [0.453125, 0.546875], 0.087646484375: [0.421875, 0.578125], 0.1552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.6162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.878662109375: [0.890625, 0.109375], 0.83984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.343505859375: [0.484375, 0.515625], 0.4912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.228271484375: [0.921875, 0.078125], 0.636474609375: [0.359375, 0.640625], 0.0146484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.306396484375: [0.421875, 0.578125], 0.411865234375: [0.796875, 0.203125], 0.167724609375: [0.359375, 0.640625], 0.638427734375: [0.953125, 0.046875], 0.8896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.058349609375: [0.859375, 0.140625], 0.734375: [0.375, 0.625, 0.875, 0.125], 0.290771484375: [0.921875, 0.078125], 0.480224609375: [0.359375, 0.640625], 0.841552734375: [0.453125, 0.546875], 0.091552734375: [0.453125, 0.546875], 0.1630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.6474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4755859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.909912109375: [0.890625, 0.109375], 0.87109375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.359130859375: [0.984375, 0.015625], 0.599365234375: [0.796875, 0.203125], 0.525146484375: [0.421875, 0.578125], 0.978271484375: [0.921875, 0.078125], 0.0224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.667724609375: [0.359375, 0.640625], 0.060302734375: [0.453125, 0.546875], 0.177490234375: [0.296875, 0.703125], 0.427490234375: [0.296875, 0.703125], 0.175537109375: [0.390625, 0.609375], 0.9208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.804443359375: [0.765625, 0.234375], 0.765625: [0.375, 0.625, 0.875, 0.125], 0.720458984375: [0.328125, 0.671875], 0.587646484375: [0.421875, 0.578125], 0.062255859375: [0.484375, 0.515625], 0.495849609375: [0.859375, 0.140625], 0.872802734375: [0.453125, 0.546875], 0.1708984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.6787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.562255859375: [0.484375, 0.515625], 0.031005859375: [0.484375, 0.515625], 0.941162109375: [0.890625, 0.109375], 0.90234375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.374755859375: [0.484375, 0.515625], 0.630615234375: [0.796875, 0.203125], 0.243896484375: [0.421875, 0.578125], 0.698974609375: [0.359375, 0.640625], 0.761474609375: [0.359375, 0.640625], 0.253662109375: [0.890625, 0.109375], 0.657958984375: [0.328125, 0.671875], 0.12109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.443115234375: [0.796875, 0.203125], 0.183349609375: [0.859375, 0.140625], 0.775146484375: [0.421875, 0.578125], 0.9521484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.835693359375: [0.765625, 0.234375], 0.298583984375: [0.828125, 0.171875], 0.322021484375: [0.921875, 0.078125], 0.788818359375: [0.734375, 0.265625], 0.601318359375: [0.734375, 0.265625], 0.75: [0.5, 0.75, 0.0, 0.25], 0.904052734375: [0.453125, 0.546875], 0.099365234375: [0.203125, 0.796875], 0.1787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.593505859375: [0.484375, 0.515625], 0.972412109375: [0.890625, 0.109375], 0.93359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.390380859375: [0.984375, 0.015625], 0.661865234375: [0.796875, 0.203125], 0.816162109375: [0.890625, 0.109375], 0.527099609375: [0.859375, 0.140625], 0.730224609375: [0.359375, 0.640625], 0.269287109375: [0.390625, 0.609375], 0.458740234375: [0.296875, 0.703125], 0.191162109375: [0.890625, 0.109375], 0.15234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.2646484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.798583984375: [0.828125, 0.171875], 0.9833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.866943359375: [0.765625, 0.234375], 0.828125: [0.375, 0.625, 0.875, 0.125], 0.337646484375: [0.421875, 0.578125], 0.032958984375: [0.328125, 0.671875], 0.935302734375: [0.453125, 0.546875], 0.103271484375: [0.921875, 0.078125], 0.7412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.624755859375: [0.484375, 0.515625], 0.96484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.406005859375: [0.484375, 0.515625], 0.693115234375: [0.796875, 0.203125], 0.884521484375: [0.921875, 0.078125], 0.868896484375: [0.421875, 0.578125], 0.034912109375: [0.890625, 0.109375], 0.284912109375: [0.890625, 0.109375], 0.859375: [0.375, 0.625, 0.875, 0.125], 0.308349609375: [0.859375, 0.140625], 0.474365234375: [0.796875, 0.203125], 0.198974609375: [0.359375, 0.640625], 0.2802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.898193359375: [0.765625, 0.234375], 0.366943359375: [0.765625, 0.234375], 0.353271484375: [0.921875, 0.078125], 0.138427734375: [0.953125, 0.046875], 0.05859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.107177734375: [0.953125, 0.046875], 0.3349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.656005859375: [0.484375, 0.515625], 0.939208984375: [0.671875, 0.328125], 0.99609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.724365234375: [0.796875, 0.203125], 0.952880859375: [0.984375, 0.015625], 0.642333984375: [0.828125, 0.171875], 0.529052734375: [0.453125, 0.546875], 0.1943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.300537109375: [0.390625, 0.609375], 0.046875: [0.375, 0.625, 0.875, 0.125], 0.489990234375: [0.296875, 0.703125], 0.501708984375: [0.328125, 0.671875], 0.206787109375: [0.390625, 0.609375], 0.550537109375: [0.390625, 0.609375], 0.929443359375: [0.765625, 0.234375], 0.890625: [0.625, 0.875, 0.125, 0.375], 0.368896484375: [0.421875, 0.578125], 0.146240234375: [0.296875, 0.703125], 0.997802734375: [0.453125, 0.546875], 0.095458984375: [0.328125, 0.671875], 0.2021484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.8037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.687255859375: [0.484375, 0.515625], 0.697021484375: [0.921875, 0.078125], 0.769287109375: [0.390625, 0.609375], 0.437255859375: [0.484375, 0.515625], 0.755615234375: [0.796875, 0.203125], 0.5615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8271484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.823974609375: [0.359375, 0.640625], 0.316162109375: [0.890625, 0.109375], 0.27734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.712646484375: [0.421875, 0.578125], 0.1865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.5224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.984130859375: [0.984375, 0.015625], 0.214599609375: [0.859375, 0.140625], 0.3115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.581787109375: [0.390625, 0.609375], 0.960693359375: [0.765625, 0.234375], 0.921875: [0.625, 0.875, 0.125, 0.375], 0.384521484375: [0.921875, 0.078125], 0.038818359375: [0.265625, 0.734375], 0.751708984375: [0.671875, 0.328125], 0.114990234375: [0.296875, 0.703125], 0.2099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.8349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.718505859375: [0.484375, 0.515625], 0.765380859375: [0.984375, 0.015625], 0.8818359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.452880859375: [0.984375, 0.015625], 0.786865234375: [0.796875, 0.203125], 0.5927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.531005859375: [0.484375, 0.515625], 0.855224609375: [0.640625, 0.359375], 0.331787109375: [0.390625, 0.609375], 0.792724609375: [0.359375, 0.640625], 0.544677734375: [0.953125, 0.046875], 0.726318359375: [0.734375, 0.265625], 0.222412109375: [0.890625, 0.109375], 0.18359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.3271484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.613037109375: [0.390625, 0.609375], 0.991943359375: [0.765625, 0.234375], 0.953125: [0.375, 0.625, 0.875, 0.125], 0.040771484375: [0.921875, 0.078125], 0.118896484375: [0.421875, 0.578125], 0.2177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.749755859375: [0.484375, 0.515625], 0.279052734375: [0.453125, 0.546875], 0.468505859375: [0.484375, 0.515625], 0.818115234375: [0.796875, 0.203125], 0.6240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.923583984375: [0.828125, 0.171875], 0.886474609375: [0.640625, 0.359375], 0.347412109375: [0.890625, 0.109375], 0.30859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.575927734375: [0.953125, 0.046875], 0.263427734375: [0.953125, 0.046875], 0.876708984375: [0.671875, 0.328125], 0.230224609375: [0.359375, 0.640625], 0.3427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.644287109375: [0.390625, 0.609375], 0.564208984375: [0.328125, 0.671875], 0.984375: [0.625, 0.875, 0.125, 0.375], 0.415771484375: [0.921875, 0.078125], 0.042724609375: [0.359375, 0.640625], 0.888427734375: [0.953125, 0.046875], 0.993896484375: [0.421875, 0.578125], 0.122802734375: [0.453125, 0.546875], 0.2255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.8974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.781005859375: [0.484375, 0.515625], 0.294677734375: [0.953125, 0.046875], 0.484130859375: [0.984375, 0.015625], 0.849365234375: [0.796875, 0.203125], 0.605224609375: [0.359375, 0.640625], 0.532958984375: [0.328125, 0.671875], 0.025146484375: [0.421875, 0.578125], 0.0302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.917724609375: [0.640625, 0.359375], 0.036865234375: [0.796875, 0.203125], 0.607177734375: [0.953125, 0.046875], 0.140380859375: [0.984375, 0.015625], 0.003662109375: [0.890625, 0.109375], 0.238037109375: [0.390625, 0.609375], 0.3583984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.675537109375: [0.390625, 0.609375], 0.431396484375: [0.421875, 0.578125], 0.044677734375: [0.953125, 0.046875], 0.2333984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.812255859375: [0.484375, 0.515625], 0.310302734375: [0.453125, 0.546875], 0.970458984375: [0.671875, 0.328125], 0.499755859375: [0.484375, 0.515625], 0.880615234375: [0.796875, 0.203125], 0.6865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.570068359375: [0.734375, 0.265625], 0.948974609375: [0.359375, 0.640625], 0.378662109375: [0.890625, 0.109375], 0.33984375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.066162109375: [0.890625, 0.109375], 0.171875: [0.375, 0.625, 0.875, 0.125], 0.011474609375: [0.359375, 0.640625], 0.3740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.706787109375: [0.390625, 0.609375], 0.257568359375: [0.265625, 0.734375], 0.447021484375: [0.921875, 0.078125], 0.185302734375: [0.453125, 0.546875], 0.023193359375: [0.234375, 0.765625], 0.2412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.843505859375: [0.484375, 0.515625], 0.423583984375: [0.828125, 0.171875], 0.325927734375: [0.953125, 0.046875], 0.728271484375: [0.921875, 0.078125], 0.837646484375: [0.421875, 0.578125], 0.911865234375: [0.796875, 0.203125], 0.7177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.503662109375: [0.890625, 0.109375], 0.5625: [0.5, 0.75, 0.0, 0.25], 0.947021484375: [0.921875, 0.078125], 0.980224609375: [0.640625, 0.359375], 0.394287109375: [0.390625, 0.609375], 0.669677734375: [0.953125, 0.046875], 0.070068359375: [0.265625, 0.734375], 0.52734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.03125: [0.25, 0.5, 0.75, 0.0], 0.3896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.738037109375: [0.390625, 0.609375], 0.273193359375: [0.765625, 0.234375], 0.907958984375: [0.671875, 0.328125], 0.462646484375: [0.421875, 0.578125], 0.193115234375: [0.796875, 0.203125], 0.782958984375: [0.671875, 0.328125], 0.2490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.9912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.874755859375: [0.484375, 0.515625], 0.341552734375: [0.453125, 0.546875], 0.132568359375: [0.265625, 0.734375], 0.851318359375: [0.734375, 0.265625], 0.943115234375: [0.796875, 0.203125], 0.7490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.632568359375: [0.734375, 0.265625], 0.59375: [0.5, 0.75, 0.0, 0.25], 0.409912109375: [0.890625, 0.109375], 0.37109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.700927734375: [0.953125, 0.046875], 0.073974609375: [0.359375, 0.640625], 0.421630859375: [0.984375, 0.015625], 0.142333984375: [0.828125, 0.171875], 0.050537109375: [0.390625, 0.609375], 0.288818359375: [0.265625, 0.734375], 0.25: [0.5, 0.75, 0.0, 0.25], 0.611083984375: [0.828125, 0.171875], 0.478271484375: [0.921875, 0.078125], 0.200927734375: [0.953125, 0.046875], 0.540771484375: [0.921875, 0.078125], 0.8125: [0.5, 0.75, 0.0, 0.25], 0.906005859375: [0.484375, 0.515625], 0.357177734375: [0.953125, 0.046875], 0.400146484375: [0.421875, 0.578125]}
averages_odd = {0.0: [0.25, 0.5, 0.75, 0.0], 0.001708984375: [0.328125, 0.671875], 0.216552734375: [0.453125, 0.546875], 0.974365234375: [0.796875, 0.203125], 0.0068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.029052734375: [0.453125, 0.546875], 0.505615234375: [0.796875, 0.203125], 0.0693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.681396484375: [0.421875, 0.578125], 0.425537109375: [0.390625, 0.609375], 0.732177734375: [0.953125, 0.046875], 0.892333984375: [0.828125, 0.171875], 0.5380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.915771484375: [0.921875, 0.078125], 0.5: [0.5, 0.75, 0.0, 0.25], 0.4208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.800537109375: [0.390625, 0.609375], 0.595458984375: [0.671875, 0.328125], 0.493896484375: [0.421875, 0.578125], 0.052490234375: [0.296875, 0.703125], 0.966552734375: [0.453125, 0.546875], 0.558349609375: [0.859375, 0.140625], 0.007568359375: [0.265625, 0.734375], 0.937255859375: [0.484375, 0.515625], 0.372802734375: [0.453125, 0.546875], 0.148193359375: [0.234375, 0.765625], 0.568115234375: [0.796875, 0.203125], 0.8115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.695068359375: [0.734375, 0.265625], 0.65625: [0.5, 0.75, 0.0, 0.25], 0.251708984375: [0.328125, 0.671875], 0.441162109375: [0.890625, 0.109375], 0.40234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.154052734375: [0.453125, 0.546875], 0.081787109375: [0.390625, 0.609375], 0.650146484375: [0.421875, 0.578125], 0.5693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.4365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.831787109375: [0.390625, 0.609375], 0.320068359375: [0.265625, 0.734375], 0.28125: [0.25, 0.5, 0.75, 0.0], 0.7802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.625: [0.5, 0.75, 0.0, 0.25], 0.054443359375: [0.234375, 0.765625], 0.589599609375: [0.859375, 0.140625], 0.968505859375: [0.484375, 0.515625], 0.388427734375: [0.953125, 0.046875], 0.156005859375: [0.484375, 0.515625], 0.8427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.507568359375: [0.734375, 0.265625], 0.0771484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.267333984375: [0.828125, 0.171875], 0.456787109375: [0.390625, 0.609375], 0.794677734375: [0.953125, 0.046875], 0.085693359375: [0.765625, 0.234375], 0.6005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.53125: [0.5, 0.75, 0.0, 0.25], 0.24609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.4521484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.863037109375: [0.390625, 0.609375], 0.335693359375: [0.765625, 0.234375], 0.296875: [0.375, 0.625, 0.875, 0.125], 0.552490234375: [0.703125, 0.296875], 0.224365234375: [0.796875, 0.203125], 0.620849609375: [0.859375, 0.140625], 0.1240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.999755859375: [0.484375, 0.515625], 0.404052734375: [0.453125, 0.546875], 0.163818359375: [0.265625, 0.734375], 0.759521484375: [0.921875, 0.078125], 0.125: [0.25, 0.5, 0.75, 0.0], 0.8740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.757568359375: [0.734375, 0.265625], 0.71875: [0.5, 0.75, 0.0, 0.25], 0.282958984375: [0.328125, 0.671875], 0.015380859375: [0.984375, 0.015625], 0.825927734375: [0.953125, 0.046875], 0.089599609375: [0.859375, 0.140625], 0.407958984375: [0.328125, 0.671875], 0.4677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.894287109375: [0.390625, 0.609375], 0.351318359375: [0.734375, 0.265625], 0.3125: [0.25, 0.5, 0.75, 0.0], 0.583740234375: [0.703125, 0.296875], 0.665771484375: [0.921875, 0.078125], 0.232177734375: [0.953125, 0.046875], 0.017333984375: [0.828125, 0.171875], 0.652099609375: [0.859375, 0.140625], 0.814208984375: [0.671875, 0.328125], 0.419677734375: [0.953125, 0.046875], 0.171630859375: [0.984375, 0.015625], 0.9052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.509521484375: [0.921875, 0.078125], 0.0849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.009521484375: [0.921875, 0.078125], 0.736083984375: [0.828125, 0.171875], 0.488037109375: [0.390625, 0.609375], 0.857177734375: [0.953125, 0.046875], 0.093505859375: [0.484375, 0.515625], 0.236083984375: [0.828125, 0.171875], 0.6630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.546630859375: [0.984375, 0.015625], 0.4833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.925537109375: [0.390625, 0.609375], 0.208740234375: [0.296875, 0.703125], 0.328125: [0.375, 0.625, 0.875, 0.125], 0.614990234375: [0.296875, 0.703125], 0.048583984375: [0.828125, 0.171875], 0.239990234375: [0.296875, 0.703125], 0.683349609375: [0.859375, 0.140625], 0.572021484375: [0.921875, 0.078125], 0.806396484375: [0.421875, 0.578125], 0.435302734375: [0.453125, 0.546875], 0.179443359375: [0.765625, 0.234375], 0.140625: [0.375, 0.625, 0.875, 0.125], 0.9365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.820068359375: [0.734375, 0.265625], 0.78125: [0.5, 0.75, 0.0, 0.25], 0.314208984375: [0.328125, 0.671875], 0.46484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.097412109375: [0.890625, 0.109375], 0.6943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.577880859375: [0.984375, 0.015625], 0.566162109375: [0.890625, 0.109375], 0.4990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.956787109375: [0.390625, 0.609375], 0.382568359375: [0.734375, 0.265625], 0.34375: [0.5, 0.75, 0.0, 0.25], 0.646240234375: [0.703125, 0.296875], 0.626708984375: [0.328125, 0.671875], 0.247802734375: [0.453125, 0.546875], 0.714599609375: [0.859375, 0.140625], 0.261474609375: [0.359375, 0.640625], 0.02734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.7568359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.450927734375: [0.953125, 0.046875], 0.187255859375: [0.484375, 0.515625], 0.2568359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.0458984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.9677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.511474609375: [0.359375, 0.640625], 0.0927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.329833984375: [0.828125, 0.171875], 0.126708984375: [0.328125, 0.671875], 0.919677734375: [0.953125, 0.046875], 0.101318359375: [0.265625, 0.734375], 0.161865234375: [0.796875, 0.203125], 0.7255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.609130859375: [0.984375, 0.015625], 0.0625: [0.25, 0.5, 0.75, 0.0], 0.579833984375: [0.828125, 0.171875], 0.988037109375: [0.390625, 0.609375], 0.398193359375: [0.765625, 0.234375], 0.359375: [0.375, 0.625, 0.875, 0.125], 0.677490234375: [0.703125, 0.296875], 0.745849609375: [0.859375, 0.140625], 0.277099609375: [0.859375, 0.140625], 0.466552734375: [0.453125, 0.546875], 0.195068359375: [0.265625, 0.734375], 0.15625: [0.25, 0.5, 0.75, 0.0], 0.2724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.822021484375: [0.921875, 0.078125], 0.9990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.882568359375: [0.734375, 0.265625], 0.84375: [0.5, 0.75, 0.0, 0.25], 0.345458984375: [0.328125, 0.671875], 0.134521484375: [0.921875, 0.078125], 0.49609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.950927734375: [0.953125, 0.046875], 0.105224609375: [0.359375, 0.640625], 0.363037109375: [0.390625, 0.609375], 0.640380859375: [0.984375, 0.015625], 0.413818359375: [0.734375, 0.265625], 0.375: [0.5, 0.75, 0.0, 0.25], 0.708740234375: [0.703125, 0.296875], 0.763427734375: [0.953125, 0.046875], 0.777099609375: [0.859375, 0.140625], 0.292724609375: [0.359375, 0.640625], 0.43359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.482177734375: [0.953125, 0.046875], 0.202880859375: [0.984375, 0.015625], 0.790771484375: [0.921875, 0.078125], 0.534912109375: [0.890625, 0.109375], 0.663818359375: [0.734375, 0.265625], 0.513427734375: [0.953125, 0.046875], 0.1005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.361083984375: [0.828125, 0.171875], 0.603271484375: [0.921875, 0.078125], 0.0615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.109130859375: [0.984375, 0.015625], 0.7880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.671630859375: [0.984375, 0.015625], 0.429443359375: [0.765625, 0.234375], 0.390625: [0.375, 0.625, 0.875, 0.125], 0.739990234375: [0.703125, 0.296875], 0.5458984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.808349609375: [0.859375, 0.140625], 0.845458984375: [0.671875, 0.328125], 0.077880859375: [0.984375, 0.015625], 0.861083984375: [0.828125, 0.171875], 0.497802734375: [0.453125, 0.546875], 0.210693359375: [0.234375, 0.765625], 0.3037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.548583984375: [0.828125, 0.171875], 0.945068359375: [0.734375, 0.265625], 0.90625: [0.5, 0.75, 0.0, 0.25], 0.376708984375: [0.328125, 0.671875], 0.150146484375: [0.421875, 0.578125], 0.113037109375: [0.390625, 0.609375], 0.8193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.255615234375: [0.796875, 0.203125], 0.445068359375: [0.265625, 0.734375], 0.40625: [0.5, 0.75, 0.0, 0.25], 0.771240234375: [0.703125, 0.296875], 0.900146484375: [0.421875, 0.578125], 0.5771484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.839599609375: [0.859375, 0.140625], 0.323974609375: [0.359375, 0.640625], 0.913818359375: [0.734375, 0.265625], 0.875: [0.5, 0.75, 0.0, 0.25], 0.218505859375: [0.484375, 0.515625], 0.3193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.597412109375: [0.890625, 0.109375], 0.55859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.515380859375: [0.984375, 0.015625], 0.9375: [0.5, 0.75, 0.0, 0.25], 0.392333984375: [0.828125, 0.171875], 0.157958984375: [0.328125, 0.671875], 0.116943359375: [0.234375, 0.765625], 0.8505859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.734130859375: [0.984375, 0.015625], 0.078125: [0.375, 0.625, 0.875, 0.125], 0.954833984375: [0.828125, 0.171875], 0.634521484375: [0.921875, 0.078125], 0.460693359375: [0.765625, 0.234375], 0.421875: [0.375, 0.625, 0.875, 0.125], 0.802490234375: [0.703125, 0.296875], 0.6083984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.870849609375: [0.859375, 0.140625], 0.339599609375: [0.859375, 0.140625], 0.982177734375: [0.953125, 0.046875], 0.560302734375: [0.453125, 0.546875], 0.09375: [0.25, 0.5, 0.75, 0.0], 0.226318359375: [0.265625, 0.734375], 0.1875: [0.25, 0.5, 0.75, 0.0], 0.021240234375: [0.296875, 0.703125], 0.628662109375: [0.890625, 0.109375], 0.58984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.704833984375: [0.828125, 0.171875], 0.96875: [0.5, 0.75, 0.0, 0.25], 0.165771484375: [0.921875, 0.078125], 0.120849609375: [0.859375, 0.140625], 0.271240234375: [0.296875, 0.703125], 0.169677734375: [0.953125, 0.046875], 0.286865234375: [0.796875, 0.203125], 0.046630859375: [0.984375, 0.015625], 0.476318359375: [0.734375, 0.265625], 0.4375: [0.5, 0.75, 0.0, 0.25], 0.833740234375: [0.703125, 0.296875], 0.6396484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.6875: [0.5, 0.75, 0.0, 0.25], 0.902099609375: [0.859375, 0.140625], 0.355224609375: [0.359375, 0.640625], 0.591552734375: [0.453125, 0.546875], 0.234130859375: [0.984375, 0.015625], 0.3505859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.659912109375: [0.890625, 0.109375], 0.62109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.517333984375: [0.828125, 0.171875], 0.1162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.013427734375: [0.953125, 0.046875], 0.173583984375: [0.828125, 0.171875], 0.767333984375: [0.828125, 0.171875], 0.124755859375: [0.484375, 0.515625], 0.245849609375: [0.859375, 0.140625], 0.9130859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.796630859375: [0.984375, 0.015625], 0.302490234375: [0.296875, 0.703125], 0.491943359375: [0.765625, 0.234375], 0.453125: [0.375, 0.625, 0.875, 0.125], 0.864990234375: [0.703125, 0.296875], 0.6708984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.554443359375: [0.765625, 0.234375], 0.933349609375: [0.859375, 0.140625], 0.370849609375: [0.859375, 0.140625], 0.622802734375: [0.453125, 0.546875], 0.064208984375: [0.328125, 0.671875], 0.005615234375: [0.796875, 0.203125], 0.241943359375: [0.765625, 0.234375], 0.203125: [0.375, 0.625, 0.875, 0.125], 0.3662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.691162109375: [0.890625, 0.109375], 0.65234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.962646484375: [0.421875, 0.578125], 0.439208984375: [0.328125, 0.671875], 0.181396484375: [0.421875, 0.578125], 0.015625: [0.375, 0.625, 0.875, 0.125], 0.796875: [0.375, 0.625, 0.875, 0.125], 0.21484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.9443359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.827880859375: [0.984375, 0.015625], 0.08984375: [0.1875, 0.3125, 0.6875, 0.9375, 0.0625, 0.4375, 0.5625, 0.8125], 0.318115234375: [0.796875, 0.203125], 0.538818359375: [0.734375, 0.265625], 0.6552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.986083984375: [0.828125, 0.171875], 0.46875: [0.5, 0.75, 0.0, 0.25], 0.896240234375: [0.703125, 0.296875], 0.7021484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.585693359375: [0.765625, 0.234375], 0.546875: [0.375, 0.625, 0.875, 0.125], 0.964599609375: [0.859375, 0.140625], 0.386474609375: [0.359375, 0.640625], 0.654052734375: [0.453125, 0.546875], 0.068115234375: [0.796875, 0.203125], 0.618896484375: [0.421875, 0.578125], 0.4052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.019287109375: [0.390625, 0.609375], 0.249755859375: [0.484375, 0.515625], 0.3818359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.722412109375: [0.890625, 0.109375], 0.68359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.265380859375: [0.984375, 0.015625], 0.519287109375: [0.390625, 0.609375], 0.454833984375: [0.828125, 0.171875], 0.189208984375: [0.328125, 0.671875], 0.9755859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.859130859375: [0.984375, 0.015625], 0.333740234375: [0.296875, 0.703125], 0.128662109375: [0.890625, 0.109375], 0.689208984375: [0.671875, 0.328125], 0.484375: [0.375, 0.625, 0.875, 0.125], 0.927490234375: [0.703125, 0.296875], 0.056396484375: [0.421875, 0.578125], 0.7333984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.616943359375: [0.765625, 0.234375], 0.578125: [0.375, 0.625, 0.875, 0.125], 0.995849609375: [0.859375, 0.140625], 0.402099609375: [0.859375, 0.140625], 0.685302734375: [0.453125, 0.546875], 0.072021484375: [0.921875, 0.078125], 0.1083984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.21875: [0.25, 0.5, 0.75, 0.0], 0.3974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.753662109375: [0.890625, 0.109375], 0.71484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.281005859375: [0.484375, 0.515625], 0.470458984375: [0.328125, 0.671875], 0.197021484375: [0.921875, 0.078125], 0.931396484375: [0.421875, 0.578125], 0.304443359375: [0.765625, 0.234375], 0.890380859375: [0.984375, 0.015625], 0.349365234375: [0.796875, 0.203125], 0.702880859375: [0.984375, 0.015625], 0.136474609375: [0.359375, 0.640625], 0.958740234375: [0.703125, 0.296875], 0.7646484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.648193359375: [0.765625, 0.234375], 0.609375: [0.375, 0.625, 0.875, 0.125], 0.829833984375: [0.828125, 0.171875], 0.417724609375: [0.359375, 0.640625], 0.716552734375: [0.453125, 0.546875], 0.075927734375: [0.953125, 0.046875], 0.1318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.265625: [0.375, 0.625, 0.875, 0.125], 0.2958984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.4130859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.784912109375: [0.890625, 0.109375], 0.74609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.2880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.773193359375: [0.765625, 0.234375], 0.521240234375: [0.703125, 0.296875], 0.486083984375: [0.828125, 0.171875], 0.204833984375: [0.828125, 0.171875], 0.542724609375: [0.359375, 0.640625], 0.921630859375: [0.984375, 0.015625], 0.364990234375: [0.296875, 0.703125], 0.144287109375: [0.390625, 0.609375], 0.989990234375: [0.703125, 0.296875], 0.7958984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.679443359375: [0.765625, 0.234375], 0.640625: [0.375, 0.625, 0.875, 0.125], 0.433349609375: [0.859375, 0.140625], 0.747802734375: [0.453125, 0.546875], 0.079833984375: [0.828125, 0.171875], 0.1396484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.5537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.234375: [0.375, 0.625, 0.875, 0.125], 0.027099609375: [0.859375, 0.140625], 0.296630859375: [0.984375, 0.015625], 0.77734375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.312255859375: [0.484375, 0.515625], 0.212646484375: [0.421875, 0.578125], 0.573974609375: [0.359375, 0.640625], 0.5146484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.380615234375: [0.796875, 0.203125], 0.152099609375: [0.859375, 0.140625], 0.472412109375: [0.890625, 0.109375], 0.710693359375: [0.765625, 0.234375], 0.671875: [0.375, 0.625, 0.875, 0.125], 0.259521484375: [0.921875, 0.078125], 0.6318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.448974609375: [0.359375, 0.640625], 0.779052734375: [0.453125, 0.546875], 0.083740234375: [0.296875, 0.703125], 0.1474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.5849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.673583984375: [0.828125, 0.171875], 0.4443359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.847412109375: [0.890625, 0.109375], 0.80859375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.327880859375: [0.984375, 0.015625], 0.853271484375: [0.921875, 0.078125], 0.536865234375: [0.796875, 0.203125], 0.523193359375: [0.765625, 0.234375], 0.976318359375: [0.734375, 0.265625], 0.220458984375: [0.328125, 0.671875], 0.130615234375: [0.796875, 0.203125], 0.556396484375: [0.421875, 0.578125], 0.515625: [0.375, 0.625, 0.875, 0.125], 0.109375: [0.375, 0.625, 0.875, 0.125], 0.396240234375: [0.296875, 0.703125], 0.159912109375: [0.890625, 0.109375], 0.743896484375: [0.421875, 0.578125], 0.8583984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.741943359375: [0.765625, 0.234375], 0.703125: [0.375, 0.625, 0.875, 0.125], 0.275146484375: [0.421875, 0.578125], 0.111083984375: [0.828125, 0.171875], 0.464599609375: [0.859375, 0.140625], 0.810302734375: [0.453125, 0.546875], 0.087646484375: [0.421875, 0.578125], 0.1552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.6162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.878662109375: [0.890625, 0.109375], 0.83984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.343505859375: [0.484375, 0.515625], 0.4912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.228271484375: [0.921875, 0.078125], 0.636474609375: [0.359375, 0.640625], 0.0146484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.306396484375: [0.421875, 0.578125], 0.411865234375: [0.796875, 0.203125], 0.167724609375: [0.359375, 0.640625], 0.638427734375: [0.953125, 0.046875], 0.8896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.058349609375: [0.859375, 0.140625], 0.734375: [0.375, 0.625, 0.875, 0.125], 0.290771484375: [0.921875, 0.078125], 0.480224609375: [0.359375, 0.640625], 0.841552734375: [0.453125, 0.546875], 0.091552734375: [0.453125, 0.546875], 0.1630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.6474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4755859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.909912109375: [0.890625, 0.109375], 0.87109375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.359130859375: [0.984375, 0.015625], 0.599365234375: [0.796875, 0.203125], 0.525146484375: [0.421875, 0.578125], 0.978271484375: [0.921875, 0.078125], 0.0224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.667724609375: [0.359375, 0.640625], 0.060302734375: [0.453125, 0.546875], 0.177490234375: [0.296875, 0.703125], 0.427490234375: [0.296875, 0.703125], 0.175537109375: [0.390625, 0.609375], 0.9208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.804443359375: [0.765625, 0.234375], 0.765625: [0.375, 0.625, 0.875, 0.125], 0.720458984375: [0.328125, 0.671875], 0.587646484375: [0.421875, 0.578125], 0.062255859375: [0.484375, 0.515625], 0.495849609375: [0.859375, 0.140625], 0.872802734375: [0.453125, 0.546875], 0.1708984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.6787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.562255859375: [0.484375, 0.515625], 0.031005859375: [0.484375, 0.515625], 0.941162109375: [0.890625, 0.109375], 0.90234375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.374755859375: [0.484375, 0.515625], 0.630615234375: [0.796875, 0.203125], 0.243896484375: [0.421875, 0.578125], 0.698974609375: [0.359375, 0.640625], 0.761474609375: [0.359375, 0.640625], 0.253662109375: [0.890625, 0.109375], 0.657958984375: [0.328125, 0.671875], 0.12109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.443115234375: [0.796875, 0.203125], 0.183349609375: [0.859375, 0.140625], 0.775146484375: [0.421875, 0.578125], 0.9521484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.835693359375: [0.765625, 0.234375], 0.298583984375: [0.828125, 0.171875], 0.322021484375: [0.921875, 0.078125], 0.788818359375: [0.734375, 0.265625], 0.601318359375: [0.734375, 0.265625], 0.75: [0.5, 0.75, 0.0, 0.25], 0.904052734375: [0.453125, 0.546875], 0.099365234375: [0.203125, 0.796875], 0.1787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.593505859375: [0.484375, 0.515625], 0.972412109375: [0.890625, 0.109375], 0.93359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.390380859375: [0.984375, 0.015625], 0.661865234375: [0.796875, 0.203125], 0.816162109375: [0.890625, 0.109375], 0.527099609375: [0.859375, 0.140625], 0.730224609375: [0.359375, 0.640625], 0.269287109375: [0.390625, 0.609375], 0.458740234375: [0.296875, 0.703125], 0.191162109375: [0.890625, 0.109375], 0.15234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.2646484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.798583984375: [0.828125, 0.171875], 0.9833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.866943359375: [0.765625, 0.234375], 0.828125: [0.375, 0.625, 0.875, 0.125], 0.337646484375: [0.421875, 0.578125], 0.032958984375: [0.328125, 0.671875], 0.935302734375: [0.453125, 0.546875], 0.103271484375: [0.921875, 0.078125], 0.7412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.624755859375: [0.484375, 0.515625], 0.96484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.406005859375: [0.484375, 0.515625], 0.693115234375: [0.796875, 0.203125], 0.884521484375: [0.921875, 0.078125], 0.868896484375: [0.421875, 0.578125], 0.034912109375: [0.890625, 0.109375], 0.284912109375: [0.890625, 0.109375], 0.859375: [0.375, 0.625, 0.875, 0.125], 0.308349609375: [0.859375, 0.140625], 0.474365234375: [0.796875, 0.203125], 0.198974609375: [0.359375, 0.640625], 0.2802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.898193359375: [0.765625, 0.234375], 0.366943359375: [0.765625, 0.234375], 0.353271484375: [0.921875, 0.078125], 0.138427734375: [0.953125, 0.046875], 0.05859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.107177734375: [0.953125, 0.046875], 0.3349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.656005859375: [0.484375, 0.515625], 0.939208984375: [0.671875, 0.328125], 0.99609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.724365234375: [0.796875, 0.203125], 0.952880859375: [0.984375, 0.015625], 0.642333984375: [0.828125, 0.171875], 0.529052734375: [0.453125, 0.546875], 0.1943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.300537109375: [0.390625, 0.609375], 0.046875: [0.375, 0.625, 0.875, 0.125], 0.489990234375: [0.296875, 0.703125], 0.501708984375: [0.328125, 0.671875], 0.206787109375: [0.390625, 0.609375], 0.550537109375: [0.390625, 0.609375], 0.929443359375: [0.765625, 0.234375], 0.890625: [0.625, 0.875, 0.125, 0.375], 0.368896484375: [0.421875, 0.578125], 0.146240234375: [0.296875, 0.703125], 0.997802734375: [0.453125, 0.546875], 0.095458984375: [0.328125, 0.671875], 0.2021484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.8037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.687255859375: [0.484375, 0.515625], 0.697021484375: [0.921875, 0.078125], 0.769287109375: [0.390625, 0.609375], 0.437255859375: [0.484375, 0.515625], 0.755615234375: [0.796875, 0.203125], 0.5615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8271484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.823974609375: [0.359375, 0.640625], 0.316162109375: [0.890625, 0.109375], 0.27734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.712646484375: [0.421875, 0.578125], 0.1865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.5224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.984130859375: [0.984375, 0.015625], 0.214599609375: [0.859375, 0.140625], 0.3115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.581787109375: [0.390625, 0.609375], 0.960693359375: [0.765625, 0.234375], 0.921875: [0.625, 0.875, 0.125, 0.375], 0.384521484375: [0.921875, 0.078125], 0.038818359375: [0.265625, 0.734375], 0.751708984375: [0.671875, 0.328125], 0.114990234375: [0.296875, 0.703125], 0.2099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.8349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.718505859375: [0.484375, 0.515625], 0.765380859375: [0.984375, 0.015625], 0.8818359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.452880859375: [0.984375, 0.015625], 0.786865234375: [0.796875, 0.203125], 0.5927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.531005859375: [0.484375, 0.515625], 0.855224609375: [0.640625, 0.359375], 0.331787109375: [0.390625, 0.609375], 0.792724609375: [0.359375, 0.640625], 0.544677734375: [0.953125, 0.046875], 0.726318359375: [0.734375, 0.265625], 0.222412109375: [0.890625, 0.109375], 0.18359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.3271484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.613037109375: [0.390625, 0.609375], 0.991943359375: [0.765625, 0.234375], 0.953125: [0.375, 0.625, 0.875, 0.125], 0.040771484375: [0.921875, 0.078125], 0.118896484375: [0.421875, 0.578125], 0.2177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.749755859375: [0.484375, 0.515625], 0.279052734375: [0.453125, 0.546875], 0.468505859375: [0.484375, 0.515625], 0.818115234375: [0.796875, 0.203125], 0.6240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.923583984375: [0.828125, 0.171875], 0.886474609375: [0.640625, 0.359375], 0.347412109375: [0.890625, 0.109375], 0.30859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.575927734375: [0.953125, 0.046875], 0.263427734375: [0.953125, 0.046875], 0.876708984375: [0.671875, 0.328125], 0.230224609375: [0.359375, 0.640625], 0.3427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.644287109375: [0.390625, 0.609375], 0.564208984375: [0.328125, 0.671875], 0.984375: [0.625, 0.875, 0.125, 0.375], 0.415771484375: [0.921875, 0.078125], 0.042724609375: [0.359375, 0.640625], 0.888427734375: [0.953125, 0.046875], 0.993896484375: [0.421875, 0.578125], 0.122802734375: [0.453125, 0.546875], 0.2255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.8974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.781005859375: [0.484375, 0.515625], 0.294677734375: [0.953125, 0.046875], 0.484130859375: [0.984375, 0.015625], 0.849365234375: [0.796875, 0.203125], 0.605224609375: [0.359375, 0.640625], 0.532958984375: [0.328125, 0.671875], 0.025146484375: [0.421875, 0.578125], 0.0302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.917724609375: [0.640625, 0.359375], 0.036865234375: [0.796875, 0.203125], 0.607177734375: [0.953125, 0.046875], 0.140380859375: [0.984375, 0.015625], 0.003662109375: [0.890625, 0.109375], 0.238037109375: [0.390625, 0.609375], 0.3583984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.675537109375: [0.390625, 0.609375], 0.431396484375: [0.421875, 0.578125], 0.044677734375: [0.953125, 0.046875], 0.2333984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.812255859375: [0.484375, 0.515625], 0.310302734375: [0.453125, 0.546875], 0.970458984375: [0.671875, 0.328125], 0.499755859375: [0.484375, 0.515625], 0.880615234375: [0.796875, 0.203125], 0.6865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.570068359375: [0.734375, 0.265625], 0.948974609375: [0.359375, 0.640625], 0.378662109375: [0.890625, 0.109375], 0.33984375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.066162109375: [0.890625, 0.109375], 0.171875: [0.375, 0.625, 0.875, 0.125], 0.011474609375: [0.359375, 0.640625], 0.3740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.706787109375: [0.390625, 0.609375], 0.257568359375: [0.265625, 0.734375], 0.447021484375: [0.921875, 0.078125], 0.185302734375: [0.453125, 0.546875], 0.023193359375: [0.234375, 0.765625], 0.2412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.843505859375: [0.484375, 0.515625], 0.423583984375: [0.828125, 0.171875], 0.325927734375: [0.953125, 0.046875], 0.728271484375: [0.921875, 0.078125], 0.837646484375: [0.421875, 0.578125], 0.911865234375: [0.796875, 0.203125], 0.7177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.503662109375: [0.890625, 0.109375], 0.5625: [0.5, 0.75, 0.0, 0.25], 0.947021484375: [0.921875, 0.078125], 0.980224609375: [0.640625, 0.359375], 0.394287109375: [0.390625, 0.609375], 0.669677734375: [0.953125, 0.046875], 0.070068359375: [0.265625, 0.734375], 0.52734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.03125: [0.25, 0.5, 0.75, 0.0], 0.3896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.738037109375: [0.390625, 0.609375], 0.273193359375: [0.765625, 0.234375], 0.907958984375: [0.671875, 0.328125], 0.462646484375: [0.421875, 0.578125], 0.193115234375: [0.796875, 0.203125], 0.782958984375: [0.671875, 0.328125], 0.2490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.9912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.874755859375: [0.484375, 0.515625], 0.341552734375: [0.453125, 0.546875], 0.132568359375: [0.265625, 0.734375], 0.851318359375: [0.734375, 0.265625], 0.943115234375: [0.796875, 0.203125], 0.7490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.632568359375: [0.734375, 0.265625], 0.59375: [0.5, 0.75, 0.0, 0.25], 0.409912109375: [0.890625, 0.109375], 0.37109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.700927734375: [0.953125, 0.046875], 0.073974609375: [0.359375, 0.640625], 0.421630859375: [0.984375, 0.015625], 0.142333984375: [0.828125, 0.171875], 0.050537109375: [0.390625, 0.609375], 0.288818359375: [0.265625, 0.734375], 0.25: [0.5, 0.75, 0.0, 0.25], 0.611083984375: [0.828125, 0.171875], 0.478271484375: [0.921875, 0.078125], 0.200927734375: [0.953125, 0.046875], 0.540771484375: [0.921875, 0.078125], 0.8125: [0.5, 0.75, 0.0, 0.25], 0.906005859375: [0.484375, 0.515625], 0.357177734375: [0.953125, 0.046875], 0.400146484375: [0.421875, 0.578125]} |
def test_calc_hand_val(create_computer_hand):
c = create_computer_hand
# Check basevalue calculation
assert c.calc_hand_value() == 17
# Check that calculation with trumpsuit is correct
assert c.calc_hand_value(trumpsuit='Spades') == 36
# Ensure that cards are correctly reset to basevalue before recalculation
assert c.calc_hand_value() == 17
def test_get_cards_matching_suit(create_computer_hand):
c = create_computer_hand
assert c.get_cards_matching_suit(suit="Diamonds") == [2, 3]
def test_find_lowest_card(create_computer_hand):
c = create_computer_hand
# Check function with basevalue of cards
assert c.find_lowest_card() == 5
# Recalculate value of cards and attempt again
c.set_values(trumpsuit='Hearts', evaltrumpsuit=True)
assert c.find_lowest_card() == 3
def test_find_highest_card(create_computer_hand):
c = create_computer_hand
# Check function with basevalue of cards
assert c.find_highest_card() == 2
# Recalculate value of cards and attempt again
c.set_values(trumpsuit='Hearts', evaltrumpsuit=True)
assert c.find_highest_card() == 5
def test_computer_pick_up_bidcard(create_computer_hand, create_card):
computer = create_computer_hand
# Save the card which should be dropped for checking later
card_to_drop = computer.cards[3]
bidcard = create_card
computer.pickup_bidcard(bidcard)
# Check card added to hand
assert bidcard in computer.cards.values()
# Check card removed from hand
assert card_to_drop not in computer.cards.values()
def test_computer_trick_decide(create_computer_hand, create_card):
computer = create_computer_hand
played_card = create_card
card_to_be_played = computer.cards[2]
# The next step is normally performed in euchre.py prior to calling trickPhase
computer.set_values(trumpsuit="Diamonds", evaltrumpsuit=True)
# Check that the computer leads with the correct card
assert computer.trick_decide() == card_to_be_played
# The next step is normally performed in euchre.py prior to calling trickDecide
computer.set_values(trumpsuit="Diamonds", leadsuit=played_card.get_suit())
card_to_be_played = computer.cards[5]
# Check that the computer plays a matching suit if possible
assert computer.trick_decide(playedcard=played_card) == card_to_be_played
def test_computer_bid_decide(create_computer_hand, create_card):
c = create_computer_hand
bidcard = create_card
# Check that computer passes on bidcard
assert c.bid_decide(bidcard=bidcard) == 'pass'
# Check that computer chooses 'Clubs'
assert c.bid_decide(rnd=2, excludesuit='Hearts') == 'Clubs'
# Set to nondealer
c.dealer = False
c.set_values(basevaluereset=True)
# Should pass on bidcard
assert c.bid_decide(bidcard=bidcard) == 'pass'
# Then choose a suit
assert c.bid_decide(rnd=2, excludesuit='Hearts') == 'pass'
# If clubs is excluded, should pass
assert c.bid_decide(rnd=2, excludesuit='Clubs') == 'pass'
# TODO Add case for handvalue > 65 and nondealer
# TODO Add case for order-up and accepts
def test_set_dealer(create_computer_hand_nondealer):
c = create_computer_hand_nondealer
assert c.dealer is False
c.set_dealer()
assert c.dealer is True
def test_user_bid_decide_dealer(create_user_hand, create_card, monkeypatch):
user = create_user_hand
user.set_dealer()
bidcard = create_card
list_of_responses_dealer = [1, 3, 2, 4] # accept, pass, choose suit
def user_response_dealer(dummy1, dummy2):
return list_of_responses_dealer.pop(0)
monkeypatch.setattr("src.euchre.hands.get_user_response", user_response_dealer)
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'accept'
assert user.cards[3] == bidcard
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'pass'
decision = user.bid_decide(rnd=2, excludesuit='Clubs')
assert decision == 'Hearts'
def test_user_bid_decide_nondealer(create_user_hand, create_card, monkeypatch):
user = create_user_hand
bidcard = create_card
list_of_responses_nondealer = [1, 2, 1, 3] # order-up, pass, pass, choose suit
def user_response_nondealer(dummy1, dummy2):
return list_of_responses_nondealer.pop(0)
monkeypatch.setattr("src.euchre.hands.get_user_response", user_response_nondealer)
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'order-up'
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'pass'
decision = user.bid_decide(rnd=2, excludesuit='Clubs')
assert decision == 'pass'
decision = user.bid_decide(rnd=2, excludesuit='Clubs')
assert decision == 'Diamonds'
| def test_calc_hand_val(create_computer_hand):
c = create_computer_hand
assert c.calc_hand_value() == 17
assert c.calc_hand_value(trumpsuit='Spades') == 36
assert c.calc_hand_value() == 17
def test_get_cards_matching_suit(create_computer_hand):
c = create_computer_hand
assert c.get_cards_matching_suit(suit='Diamonds') == [2, 3]
def test_find_lowest_card(create_computer_hand):
c = create_computer_hand
assert c.find_lowest_card() == 5
c.set_values(trumpsuit='Hearts', evaltrumpsuit=True)
assert c.find_lowest_card() == 3
def test_find_highest_card(create_computer_hand):
c = create_computer_hand
assert c.find_highest_card() == 2
c.set_values(trumpsuit='Hearts', evaltrumpsuit=True)
assert c.find_highest_card() == 5
def test_computer_pick_up_bidcard(create_computer_hand, create_card):
computer = create_computer_hand
card_to_drop = computer.cards[3]
bidcard = create_card
computer.pickup_bidcard(bidcard)
assert bidcard in computer.cards.values()
assert card_to_drop not in computer.cards.values()
def test_computer_trick_decide(create_computer_hand, create_card):
computer = create_computer_hand
played_card = create_card
card_to_be_played = computer.cards[2]
computer.set_values(trumpsuit='Diamonds', evaltrumpsuit=True)
assert computer.trick_decide() == card_to_be_played
computer.set_values(trumpsuit='Diamonds', leadsuit=played_card.get_suit())
card_to_be_played = computer.cards[5]
assert computer.trick_decide(playedcard=played_card) == card_to_be_played
def test_computer_bid_decide(create_computer_hand, create_card):
c = create_computer_hand
bidcard = create_card
assert c.bid_decide(bidcard=bidcard) == 'pass'
assert c.bid_decide(rnd=2, excludesuit='Hearts') == 'Clubs'
c.dealer = False
c.set_values(basevaluereset=True)
assert c.bid_decide(bidcard=bidcard) == 'pass'
assert c.bid_decide(rnd=2, excludesuit='Hearts') == 'pass'
assert c.bid_decide(rnd=2, excludesuit='Clubs') == 'pass'
def test_set_dealer(create_computer_hand_nondealer):
c = create_computer_hand_nondealer
assert c.dealer is False
c.set_dealer()
assert c.dealer is True
def test_user_bid_decide_dealer(create_user_hand, create_card, monkeypatch):
user = create_user_hand
user.set_dealer()
bidcard = create_card
list_of_responses_dealer = [1, 3, 2, 4]
def user_response_dealer(dummy1, dummy2):
return list_of_responses_dealer.pop(0)
monkeypatch.setattr('src.euchre.hands.get_user_response', user_response_dealer)
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'accept'
assert user.cards[3] == bidcard
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'pass'
decision = user.bid_decide(rnd=2, excludesuit='Clubs')
assert decision == 'Hearts'
def test_user_bid_decide_nondealer(create_user_hand, create_card, monkeypatch):
user = create_user_hand
bidcard = create_card
list_of_responses_nondealer = [1, 2, 1, 3]
def user_response_nondealer(dummy1, dummy2):
return list_of_responses_nondealer.pop(0)
monkeypatch.setattr('src.euchre.hands.get_user_response', user_response_nondealer)
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'order-up'
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'pass'
decision = user.bid_decide(rnd=2, excludesuit='Clubs')
assert decision == 'pass'
decision = user.bid_decide(rnd=2, excludesuit='Clubs')
assert decision == 'Diamonds' |
'''
Subarray with given sum
Given an unsorted array A of size N of non-negative integers, find a continuous sub-array
which adds to a given number. Find starting and ending positions(1 indexing) of first such
occuring subarray from the left if sum equals to subarray, else print -1.
Input: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 15
Output: 1, 5
=========================================
Adjust the start and end index, in each step increase start or end idx.
If sum is bigger than K, remove element from the start idx from the sum.
Else add element from the end idx to the sum.
Time Complexity: O(N)
Space Complexity: O(1)
'''
############
# Solution #
############
def find_subarray(arr, k):
n = len(arr)
if n == 0:
return -1
start = 0
end = 0
current_sum = arr[0]
while end < n:
if current_sum == k:
return (start + 1, end + 1)
if current_sum < k:
end += 1
current_sum += arr[end]
else:
current_sum -= arr[start]
start += 1
return -1
###########
# Testing #
###########
# Test 1
# Correct result => (1, 5)
print(find_subarray([1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 15))
# Test 2
# Correct result => (2, 4)
print(find_subarray([1, 2, 3, 7, 5], 12))
# Test 3
# Correct result => (5, 5)
print(find_subarray([6, 6, 6, 6, 3], 3)) | """
Subarray with given sum
Given an unsorted array A of size N of non-negative integers, find a continuous sub-array
which adds to a given number. Find starting and ending positions(1 indexing) of first such
occuring subarray from the left if sum equals to subarray, else print -1.
Input: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 15
Output: 1, 5
=========================================
Adjust the start and end index, in each step increase start or end idx.
If sum is bigger than K, remove element from the start idx from the sum.
Else add element from the end idx to the sum.
Time Complexity: O(N)
Space Complexity: O(1)
"""
def find_subarray(arr, k):
n = len(arr)
if n == 0:
return -1
start = 0
end = 0
current_sum = arr[0]
while end < n:
if current_sum == k:
return (start + 1, end + 1)
if current_sum < k:
end += 1
current_sum += arr[end]
else:
current_sum -= arr[start]
start += 1
return -1
print(find_subarray([1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 15))
print(find_subarray([1, 2, 3, 7, 5], 12))
print(find_subarray([6, 6, 6, 6, 3], 3)) |
#Part 1
f = open('day2.txt','r')
i=0
for line in f:
minmax, letter, password = line.split()
min,max = minmax.split('-')
letter = letter.split(':')[0]
if letter in password:
if int(min) <= password.count(letter) <= int(max):
i+=1
#print(f'{i} -- {min} -- {max} --- {letter} --- {password}' )
print(f'Valid passwords {i}')
f.close()
#Part 2
f = open('day2.txt','r')
i=0
for line in f:
minmax, letter, password = line.split()
min,max = minmax.split('-')
min = int(min)
max = int(max)
letter = letter.split(':')[0]
if letter in password:
if (password[min-1] == letter and password[max-1] != letter) or (password[min-1] != letter and password[max-1] == letter):
i+=1
#print(f'{i} -- {min} -- {max} --- {letter} --- {password}' )
print(f'Valid passwords {i}')
f.close()
| f = open('day2.txt', 'r')
i = 0
for line in f:
(minmax, letter, password) = line.split()
(min, max) = minmax.split('-')
letter = letter.split(':')[0]
if letter in password:
if int(min) <= password.count(letter) <= int(max):
i += 1
print(f'Valid passwords {i}')
f.close()
f = open('day2.txt', 'r')
i = 0
for line in f:
(minmax, letter, password) = line.split()
(min, max) = minmax.split('-')
min = int(min)
max = int(max)
letter = letter.split(':')[0]
if letter in password:
if password[min - 1] == letter and password[max - 1] != letter or (password[min - 1] != letter and password[max - 1] == letter):
i += 1
print(f'Valid passwords {i}')
f.close() |
uctable = [ [ 40 ],
[ 91 ],
[ 123 ],
[ 224, 188, 186 ],
[ 224, 188, 188 ],
[ 225, 154, 155 ],
[ 226, 128, 154 ],
[ 226, 128, 158 ],
[ 226, 129, 133 ],
[ 226, 129, 189 ],
[ 226, 130, 141 ],
[ 226, 140, 136 ],
[ 226, 140, 138 ],
[ 226, 140, 169 ],
[ 226, 157, 168 ],
[ 226, 157, 170 ],
[ 226, 157, 172 ],
[ 226, 157, 174 ],
[ 226, 157, 176 ],
[ 226, 157, 178 ],
[ 226, 157, 180 ],
[ 226, 159, 133 ],
[ 226, 159, 166 ],
[ 226, 159, 168 ],
[ 226, 159, 170 ],
[ 226, 159, 172 ],
[ 226, 159, 174 ],
[ 226, 166, 131 ],
[ 226, 166, 133 ],
[ 226, 166, 135 ],
[ 226, 166, 137 ],
[ 226, 166, 139 ],
[ 226, 166, 141 ],
[ 226, 166, 143 ],
[ 226, 166, 145 ],
[ 226, 166, 147 ],
[ 226, 166, 149 ],
[ 226, 166, 151 ],
[ 226, 167, 152 ],
[ 226, 167, 154 ],
[ 226, 167, 188 ],
[ 226, 184, 162 ],
[ 226, 184, 164 ],
[ 226, 184, 166 ],
[ 226, 184, 168 ],
[ 226, 185, 130 ],
[ 227, 128, 136 ],
[ 227, 128, 138 ],
[ 227, 128, 140 ],
[ 227, 128, 142 ],
[ 227, 128, 144 ],
[ 227, 128, 148 ],
[ 227, 128, 150 ],
[ 227, 128, 152 ],
[ 227, 128, 154 ],
[ 227, 128, 157 ],
[ 239, 180, 191 ],
[ 239, 184, 151 ],
[ 239, 184, 181 ],
[ 239, 184, 183 ],
[ 239, 184, 185 ],
[ 239, 184, 187 ],
[ 239, 184, 189 ],
[ 239, 184, 191 ],
[ 239, 185, 129 ],
[ 239, 185, 131 ],
[ 239, 185, 135 ],
[ 239, 185, 153 ],
[ 239, 185, 155 ],
[ 239, 185, 157 ],
[ 239, 188, 136 ],
[ 239, 188, 187 ],
[ 239, 189, 155 ],
[ 239, 189, 159 ],
[ 239, 189, 162 ] ]
| uctable = [[40], [91], [123], [224, 188, 186], [224, 188, 188], [225, 154, 155], [226, 128, 154], [226, 128, 158], [226, 129, 133], [226, 129, 189], [226, 130, 141], [226, 140, 136], [226, 140, 138], [226, 140, 169], [226, 157, 168], [226, 157, 170], [226, 157, 172], [226, 157, 174], [226, 157, 176], [226, 157, 178], [226, 157, 180], [226, 159, 133], [226, 159, 166], [226, 159, 168], [226, 159, 170], [226, 159, 172], [226, 159, 174], [226, 166, 131], [226, 166, 133], [226, 166, 135], [226, 166, 137], [226, 166, 139], [226, 166, 141], [226, 166, 143], [226, 166, 145], [226, 166, 147], [226, 166, 149], [226, 166, 151], [226, 167, 152], [226, 167, 154], [226, 167, 188], [226, 184, 162], [226, 184, 164], [226, 184, 166], [226, 184, 168], [226, 185, 130], [227, 128, 136], [227, 128, 138], [227, 128, 140], [227, 128, 142], [227, 128, 144], [227, 128, 148], [227, 128, 150], [227, 128, 152], [227, 128, 154], [227, 128, 157], [239, 180, 191], [239, 184, 151], [239, 184, 181], [239, 184, 183], [239, 184, 185], [239, 184, 187], [239, 184, 189], [239, 184, 191], [239, 185, 129], [239, 185, 131], [239, 185, 135], [239, 185, 153], [239, 185, 155], [239, 185, 157], [239, 188, 136], [239, 188, 187], [239, 189, 155], [239, 189, 159], [239, 189, 162]] |
try:
p =10
q = 5
p = q/0
f = open("abc.txt")
# except Exception as e: #prints exception message as type
# print(type(e))
#
#
# except Exception as e: #prints exception message
# print(e)
except ZeroDivisionError:
print("Where is my Destiny.!")
except FileNotFoundError as e:
print("No such file or directory:", e.filename)
except (FileNotFoundError, ZeroDivisionError):
print("Kitne error krega bhai.!!")
| try:
p = 10
q = 5
p = q / 0
f = open('abc.txt')
except ZeroDivisionError:
print('Where is my Destiny.!')
except FileNotFoundError as e:
print('No such file or directory:', e.filename)
except (FileNotFoundError, ZeroDivisionError):
print('Kitne error krega bhai.!!') |
class comment:
def __init__(self, text):
self.text = text
def get_text(self):
return f"<!-- {self.text} -->" | class Comment:
def __init__(self, text):
self.text = text
def get_text(self):
return f'<!-- {self.text} -->' |
# coding: utf-8
n = int()
b = int()
m = int()
n = 10
b = 2
p = n / b
x = zeros((n,n), double)
y = zeros((n,n), double)
z = zeros((n,n), double)
r = zeros((b,b), double)
u = zeros((b,b), double)
v = zeros((b,b), double)
for i in range(0, p):
for j in range(0, p):
for k1 in range(0, b):
for k2 in range(0, b):
r[k1,k2] = z[i+k1,j+k2]
for k in range(0, p):
for k1 in range(0, b):
for k2 in range(0, b):
u[k1,k2] = x[i+k1,k+k2]
v[k1,k2] = y[k+k1,j+k2]
for ii in range(0, b):
for jj in range(0, b):
for kk in range(0, b):
r[ii,jj] = r[ii,jj] + u[ii,kk]*v[kk,jj]
for k1 in range(0, b):
for k2 in range(0, b):
z[i+k1,j+k2] = r[k1,k2]
| n = int()
b = int()
m = int()
n = 10
b = 2
p = n / b
x = zeros((n, n), double)
y = zeros((n, n), double)
z = zeros((n, n), double)
r = zeros((b, b), double)
u = zeros((b, b), double)
v = zeros((b, b), double)
for i in range(0, p):
for j in range(0, p):
for k1 in range(0, b):
for k2 in range(0, b):
r[k1, k2] = z[i + k1, j + k2]
for k in range(0, p):
for k1 in range(0, b):
for k2 in range(0, b):
u[k1, k2] = x[i + k1, k + k2]
v[k1, k2] = y[k + k1, j + k2]
for ii in range(0, b):
for jj in range(0, b):
for kk in range(0, b):
r[ii, jj] = r[ii, jj] + u[ii, kk] * v[kk, jj]
for k1 in range(0, b):
for k2 in range(0, b):
z[i + k1, j + k2] = r[k1, k2] |
ENVIRONMENT = 'sandbox'
LOG_CONFIG = None
def set_environment(env):
global ENVIRONMENT
ENVIRONMENT = env
configure_logging(ENVIRONMENT)
def get_env_parameter(property):
return property.get(ENVIRONMENT, property['sandbox'])
METRICS_ENABLED = True
def configure_logging(env):
global LOG_CONFIG
LOG_CONFIG = {
"version": 1,
"disable_existing_loggers": False,
"formatters": {
"simple": {
"format": "%(asctime)s - %(levelname)s %(name)s:%(funcName)s - %(message)s",
"datefmt": "%Y-%m-%d %H:%M:%S"
}
},
"handlers": {
"console": {
"class": "logging.StreamHandler",
"level": "DEBUG",
"formatter": "simple",
"stream": "ext://sys.stdout"
},
},
"loggers": {
"app": {
"level": "INFO",
"handlers": ["console"],
"propagate": True
},
}
}
configure_logging(ENVIRONMENT)
| environment = 'sandbox'
log_config = None
def set_environment(env):
global ENVIRONMENT
environment = env
configure_logging(ENVIRONMENT)
def get_env_parameter(property):
return property.get(ENVIRONMENT, property['sandbox'])
metrics_enabled = True
def configure_logging(env):
global LOG_CONFIG
log_config = {'version': 1, 'disable_existing_loggers': False, 'formatters': {'simple': {'format': '%(asctime)s - %(levelname)s %(name)s:%(funcName)s - %(message)s', 'datefmt': '%Y-%m-%d %H:%M:%S'}}, 'handlers': {'console': {'class': 'logging.StreamHandler', 'level': 'DEBUG', 'formatter': 'simple', 'stream': 'ext://sys.stdout'}}, 'loggers': {'app': {'level': 'INFO', 'handlers': ['console'], 'propagate': True}}}
configure_logging(ENVIRONMENT) |
#
# PySNMP MIB module AIDIALOUT-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/AIDIALOUT-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:00:32 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ValueSizeConstraint, ConstraintsUnion, SingleValueConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ConstraintsIntersection")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
ModuleIdentity, enterprises, Counter64, ObjectIdentity, Bits, Counter32, TimeTicks, Integer32, Unsigned32, NotificationType, IpAddress, iso, Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "enterprises", "Counter64", "ObjectIdentity", "Bits", "Counter32", "TimeTicks", "Integer32", "Unsigned32", "NotificationType", "IpAddress", "iso", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier")
TextualConvention, DisplayString, TruthValue = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString", "TruthValue")
class PositiveInteger(Integer32):
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(1, 2147483647)
aii = MibIdentifier((1, 3, 6, 1, 4, 1, 539))
aiDialOut = ModuleIdentity((1, 3, 6, 1, 4, 1, 539, 36))
if mibBuilder.loadTexts: aiDialOut.setLastUpdated('9909151700Z')
if mibBuilder.loadTexts: aiDialOut.setOrganization('Applied Innovation Inc.')
aiDialOutTable = MibTable((1, 3, 6, 1, 4, 1, 539, 36, 1), )
if mibBuilder.loadTexts: aiDialOutTable.setStatus('current')
aiDialOutEntry = MibTableRow((1, 3, 6, 1, 4, 1, 539, 36, 1, 1), ).setIndexNames((0, "AIDIALOUT-MIB", "aiDialOutLinkNumber"))
if mibBuilder.loadTexts: aiDialOutEntry.setStatus('current')
aiDialOutLinkNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 1), PositiveInteger()).setMaxAccess("readonly")
if mibBuilder.loadTexts: aiDialOutLinkNumber.setStatus('current')
aiDialOutStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 2), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: aiDialOutStatus.setStatus('current')
aiDialOutPrimaryDialString = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: aiDialOutPrimaryDialString.setStatus('current')
aiDialOutSecondaryDialString = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: aiDialOutSecondaryDialString.setStatus('current')
aiDialOutTimeOut = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 300))).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: aiDialOutTimeOut.setStatus('current')
aiDialOutAttempts = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10))).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: aiDialOutAttempts.setStatus('current')
aiDialOutInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 300))).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: aiDialOutInterval.setStatus('current')
mibBuilder.exportSymbols("AIDIALOUT-MIB", aiDialOut=aiDialOut, aiDialOutPrimaryDialString=aiDialOutPrimaryDialString, aiDialOutStatus=aiDialOutStatus, aiDialOutTable=aiDialOutTable, PYSNMP_MODULE_ID=aiDialOut, aiDialOutLinkNumber=aiDialOutLinkNumber, aii=aii, aiDialOutSecondaryDialString=aiDialOutSecondaryDialString, aiDialOutTimeOut=aiDialOutTimeOut, aiDialOutEntry=aiDialOutEntry, aiDialOutInterval=aiDialOutInterval, PositiveInteger=PositiveInteger, aiDialOutAttempts=aiDialOutAttempts)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, value_size_constraint, constraints_union, single_value_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ConstraintsIntersection')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(module_identity, enterprises, counter64, object_identity, bits, counter32, time_ticks, integer32, unsigned32, notification_type, ip_address, iso, gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'enterprises', 'Counter64', 'ObjectIdentity', 'Bits', 'Counter32', 'TimeTicks', 'Integer32', 'Unsigned32', 'NotificationType', 'IpAddress', 'iso', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier')
(textual_convention, display_string, truth_value) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString', 'TruthValue')
class Positiveinteger(Integer32):
subtype_spec = Integer32.subtypeSpec + value_range_constraint(1, 2147483647)
aii = mib_identifier((1, 3, 6, 1, 4, 1, 539))
ai_dial_out = module_identity((1, 3, 6, 1, 4, 1, 539, 36))
if mibBuilder.loadTexts:
aiDialOut.setLastUpdated('9909151700Z')
if mibBuilder.loadTexts:
aiDialOut.setOrganization('Applied Innovation Inc.')
ai_dial_out_table = mib_table((1, 3, 6, 1, 4, 1, 539, 36, 1))
if mibBuilder.loadTexts:
aiDialOutTable.setStatus('current')
ai_dial_out_entry = mib_table_row((1, 3, 6, 1, 4, 1, 539, 36, 1, 1)).setIndexNames((0, 'AIDIALOUT-MIB', 'aiDialOutLinkNumber'))
if mibBuilder.loadTexts:
aiDialOutEntry.setStatus('current')
ai_dial_out_link_number = mib_table_column((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 1), positive_integer()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
aiDialOutLinkNumber.setStatus('current')
ai_dial_out_status = mib_table_column((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 2), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
aiDialOutStatus.setStatus('current')
ai_dial_out_primary_dial_string = mib_table_column((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 3), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
aiDialOutPrimaryDialString.setStatus('current')
ai_dial_out_secondary_dial_string = mib_table_column((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 4), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
aiDialOutSecondaryDialString.setStatus('current')
ai_dial_out_time_out = mib_table_column((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(5, 300))).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
aiDialOutTimeOut.setStatus('current')
ai_dial_out_attempts = mib_table_column((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 10))).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
aiDialOutAttempts.setStatus('current')
ai_dial_out_interval = mib_table_column((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 300))).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
aiDialOutInterval.setStatus('current')
mibBuilder.exportSymbols('AIDIALOUT-MIB', aiDialOut=aiDialOut, aiDialOutPrimaryDialString=aiDialOutPrimaryDialString, aiDialOutStatus=aiDialOutStatus, aiDialOutTable=aiDialOutTable, PYSNMP_MODULE_ID=aiDialOut, aiDialOutLinkNumber=aiDialOutLinkNumber, aii=aii, aiDialOutSecondaryDialString=aiDialOutSecondaryDialString, aiDialOutTimeOut=aiDialOutTimeOut, aiDialOutEntry=aiDialOutEntry, aiDialOutInterval=aiDialOutInterval, PositiveInteger=PositiveInteger, aiDialOutAttempts=aiDialOutAttempts) |
vowels = ["a", "e", "i", "o", "u",
"A", "E", "I", "O", "U"]
word = input("Provide a word to search for vowels:")
found = []
for letter in word:
if letter in vowels:
if letter not in found:
found.append(letter)
for vowels in found:
print(vowels)
| vowels = ['a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U']
word = input('Provide a word to search for vowels:')
found = []
for letter in word:
if letter in vowels:
if letter not in found:
found.append(letter)
for vowels in found:
print(vowels) |
class Solution(object):
_num = [0]
def numSquares(self, n):
num = self._num
while len(num) <= n:
num += min(num[-i * i] for i in xrange(1, int(len(num) ** 0.5 + 1))) + 1
return num[n]
n = 12
res = Solution().numSquares(n)
print(res) | class Solution(object):
_num = [0]
def num_squares(self, n):
num = self._num
while len(num) <= n:
num += min((num[-i * i] for i in xrange(1, int(len(num) ** 0.5 + 1)))) + 1
return num[n]
n = 12
res = solution().numSquares(n)
print(res) |
#Herencia Multiple
class Telefono:
def __init__(self):
pass
def llamar(self):
print("llamando . . . ")
def ocupado(self):
print("ocpado . . .")
class Camara:
def __init__(self):
pass
def fotografia(self):
print("tomando fotos..")
class Reproduccion:
def __init__(self):
pass
def reproducciondemusica(self):
print("reproducir musica")
def reproducirvideo(self):
print("reproducir un video")
class smartphone(Telefono, Camara, Reproduccion):
def __del__(self): #este metodo es para limpiar recursos (destructor)
print("telefono apagado")
movil = smartphone()
print(dir(movil)) #nos da las funciones que podemos usar
print(movil.llamar())
| class Telefono:
def __init__(self):
pass
def llamar(self):
print('llamando . . . ')
def ocupado(self):
print('ocpado . . .')
class Camara:
def __init__(self):
pass
def fotografia(self):
print('tomando fotos..')
class Reproduccion:
def __init__(self):
pass
def reproducciondemusica(self):
print('reproducir musica')
def reproducirvideo(self):
print('reproducir un video')
class Smartphone(Telefono, Camara, Reproduccion):
def __del__(self):
print('telefono apagado')
movil = smartphone()
print(dir(movil))
print(movil.llamar()) |
# ---- simple cubic O(n^3) time complexity / constant O(1) space complexity algorithm ----
DP = {}
lines = [0]
lines.extend(sorted([int(line.strip()) for line in open('day10.txt')]))
lines.append(max(lines)+3)
def dp(i):
if i == len(lines)-1:
return 1
if i in DP:
return DP[i]
ans = 0
for j in range(i+1, len(lines)):
if lines[j] - lines[i] <= 3:
ans += dp(j)
DP[i] = ans
return ans
def solve(lines):
nums = set(lines)
ways = [0 for i in range(len(lines))]
diffs = [0, 0, 0]
cur = 0
while len(nums) > 0:
p = 0
for i in (1,2,3):
if cur+i in nums:
p += 1
nums.remove(cur+i)
diffs[i-1] += 1
cur = cur+i
break
parta = diffs[0], (diffs[2] + 1)
return sum(ways)
partb = diffs
preamble_size = 25
nums = set()
for i in range(len(lines)):
found = False
if len(nums) < preamble_size:
nums.add(int(lines[i]))
else:
for n in lines[i-25:i]:
for m in lines[i-25:i]:
n, m = int(n), int(m)
if n != m and n + m == int(lines[i]):
found = True
if not found:
return int(lines[i])
return 0
flag = [i for i in range(len(lines)) if lines[i].split()[0] in {"nop", "jmp"}]
for f in flag:
acc = 0
cpu = 0
all_inst = set()
while cpu not in all_inst:
if cpu == len(lines):
return acc
all_inst.add(cpu)
inst = lines[cpu].split()
print(inst)
if inst[0] == "nop" and cpu == f:
cpu += int(inst[1])
cpu -= 1
if inst[0] == "acc":
acc += int(inst[1])
if inst[0] == "jmp":
if cpu != f:
cpu += int(inst[1])
cpu -= 1
cpu += 1
d = dict()
for line in lines:
this_bag, other_bags = line.split(" contain ")
d[this_bag] = [bag for bag in other_bags.split(", ")]
return number_of(["shiny gold bag"], d, lines, 0)
return len(unique_colors("shiny gold bag", d, lines, set()))
if __name__ == '__main__':
# read in input (get_data() returns string)
#lines = [int(line.strip()) for line in open('day10.txt')]
#submit(sol1(i))
#submit(sol1(i), part="a", day=2, year=2020)
print(dp(0))
#submit(solve(lines))
| dp = {}
lines = [0]
lines.extend(sorted([int(line.strip()) for line in open('day10.txt')]))
lines.append(max(lines) + 3)
def dp(i):
if i == len(lines) - 1:
return 1
if i in DP:
return DP[i]
ans = 0
for j in range(i + 1, len(lines)):
if lines[j] - lines[i] <= 3:
ans += dp(j)
DP[i] = ans
return ans
def solve(lines):
nums = set(lines)
ways = [0 for i in range(len(lines))]
diffs = [0, 0, 0]
cur = 0
while len(nums) > 0:
p = 0
for i in (1, 2, 3):
if cur + i in nums:
p += 1
nums.remove(cur + i)
diffs[i - 1] += 1
cur = cur + i
break
parta = (diffs[0], diffs[2] + 1)
return sum(ways)
partb = diffs
preamble_size = 25
nums = set()
for i in range(len(lines)):
found = False
if len(nums) < preamble_size:
nums.add(int(lines[i]))
else:
for n in lines[i - 25:i]:
for m in lines[i - 25:i]:
(n, m) = (int(n), int(m))
if n != m and n + m == int(lines[i]):
found = True
if not found:
return int(lines[i])
return 0
flag = [i for i in range(len(lines)) if lines[i].split()[0] in {'nop', 'jmp'}]
for f in flag:
acc = 0
cpu = 0
all_inst = set()
while cpu not in all_inst:
if cpu == len(lines):
return acc
all_inst.add(cpu)
inst = lines[cpu].split()
print(inst)
if inst[0] == 'nop' and cpu == f:
cpu += int(inst[1])
cpu -= 1
if inst[0] == 'acc':
acc += int(inst[1])
if inst[0] == 'jmp':
if cpu != f:
cpu += int(inst[1])
cpu -= 1
cpu += 1
d = dict()
for line in lines:
(this_bag, other_bags) = line.split(' contain ')
d[this_bag] = [bag for bag in other_bags.split(', ')]
return number_of(['shiny gold bag'], d, lines, 0)
return len(unique_colors('shiny gold bag', d, lines, set()))
if __name__ == '__main__':
print(dp(0)) |
# MIT licensed
# Copyright (c) 2013-2020 lilydjwg <lilydjwg@gmail.com>, et al.
API_URL = 'https://crates.io/api/v1/crates/%s'
async def get_version(name, conf, *, cache, **kwargs):
name = conf.get('cratesio') or name
data = await cache.get_json(API_URL % name)
version = [v['num'] for v in data['versions'] if not v['yanked']][0]
return version
| api_url = 'https://crates.io/api/v1/crates/%s'
async def get_version(name, conf, *, cache, **kwargs):
name = conf.get('cratesio') or name
data = await cache.get_json(API_URL % name)
version = [v['num'] for v in data['versions'] if not v['yanked']][0]
return version |
{
"targets": [
{
"target_name": "multihashing",
"sources": [
"multihashing.cc",
"argon2/argon2.c",
"argon2/best.c",
"argon2/blake2b.c",
"argon2/core.c",
"argon2/encoding.c",
"argon2/thread.c",
],
"include_dirs": [
"crypto",
"<!(node -e \"require('nan')\")"
],
"cflags_cc": [
"-std=c++0x"
],
}
]
}
| {'targets': [{'target_name': 'multihashing', 'sources': ['multihashing.cc', 'argon2/argon2.c', 'argon2/best.c', 'argon2/blake2b.c', 'argon2/core.c', 'argon2/encoding.c', 'argon2/thread.c'], 'include_dirs': ['crypto', '<!(node -e "require(\'nan\')")'], 'cflags_cc': ['-std=c++0x']}]} |
__author__ = 'Hans-Werner Roitzsch'
class SeriesFileReader:
def __init__(self):
self.attribute_count = 8
def read(self, file_path):
lines = []
lines_attributes = []
with open(file_path) as opened_file:
for index, line in enumerate(opened_file):
if True:
line_parts = line.split('\t', -1)
line_parts = [elem.strip('\n') for elem in line_parts]
# print(line_parts)
if len(line_parts) == self.attribute_count:
line_attributes = {}
line_attributes['url'] = ''
line_attributes['start_date'] = ''
line_attributes['start_date_year'] = ''
line_attributes['start_date_month'] = ''
line_attributes['start_date_day'] = ''
line_attributes['name'] = ''
line_attributes['episode_count'] = ''
line_attributes['producer_url'] = ''
line_attributes['image_url'] = ''
line_attributes['summary'] = ''
if line_parts[0] != '':
line_attributes['url'] = line_parts[0].strip('<>')
if line_parts[1] != '':
line_attributes['start_date'] = line_parts[1].split('"', -1)[1]
start_date_parts = line_attributes['start_date'].split('-', -1)
line_attributes['start_date_year'] = start_date_parts[0]
line_attributes['start_date_month'] = start_date_parts[1]
line_attributes['start_date_day'] = start_date_parts[2]
if line_parts[2] != '':
line_attributes['name'] = line_parts[2].split('"', -1)[1]
if line_parts[3] != '':
line_attributes['episode_count'] = line_parts[3].split('"', -1)[1]
if line_parts[4] != '':
line_attributes['producer_url'] = line_parts[4].strip('<>')
if line_parts[6] != '':
line_attributes['image_url'] = line_parts[6].strip('<>')
if line_parts[7] != '':
# print('PART #', index, ': ', line_parts[7], sep='')
line_attributes['summary'] = line_parts[7].split('"', -1)[1]
lines_attributes.append(line_attributes)
else:
pass # ignore the incomplete lines
return lines_attributes
| __author__ = 'Hans-Werner Roitzsch'
class Seriesfilereader:
def __init__(self):
self.attribute_count = 8
def read(self, file_path):
lines = []
lines_attributes = []
with open(file_path) as opened_file:
for (index, line) in enumerate(opened_file):
if True:
line_parts = line.split('\t', -1)
line_parts = [elem.strip('\n') for elem in line_parts]
if len(line_parts) == self.attribute_count:
line_attributes = {}
line_attributes['url'] = ''
line_attributes['start_date'] = ''
line_attributes['start_date_year'] = ''
line_attributes['start_date_month'] = ''
line_attributes['start_date_day'] = ''
line_attributes['name'] = ''
line_attributes['episode_count'] = ''
line_attributes['producer_url'] = ''
line_attributes['image_url'] = ''
line_attributes['summary'] = ''
if line_parts[0] != '':
line_attributes['url'] = line_parts[0].strip('<>')
if line_parts[1] != '':
line_attributes['start_date'] = line_parts[1].split('"', -1)[1]
start_date_parts = line_attributes['start_date'].split('-', -1)
line_attributes['start_date_year'] = start_date_parts[0]
line_attributes['start_date_month'] = start_date_parts[1]
line_attributes['start_date_day'] = start_date_parts[2]
if line_parts[2] != '':
line_attributes['name'] = line_parts[2].split('"', -1)[1]
if line_parts[3] != '':
line_attributes['episode_count'] = line_parts[3].split('"', -1)[1]
if line_parts[4] != '':
line_attributes['producer_url'] = line_parts[4].strip('<>')
if line_parts[6] != '':
line_attributes['image_url'] = line_parts[6].strip('<>')
if line_parts[7] != '':
line_attributes['summary'] = line_parts[7].split('"', -1)[1]
lines_attributes.append(line_attributes)
else:
pass
return lines_attributes |
# LTD simulation models / perturbances
# Attribute name case sensitive.
# Commented and empty lines are ignored
# Double quoted variable names in sysPert parameters ignored
# Perturbances
mirror.sysPerturbances = [
'gen 5 : step Pm 2 -50 rel',
]
mirror.govDelay ={
'delaygen1' : {
'genBus' : 1,
'genId' : None, # optional
'wDelay' : (0,0),
'PrefDelay' : (0, 0),
},
#end of defined governor delays
}
mirror.sysBA = {
'BA1':{
'Area':1,
'B': "1.0 : perload", # MW/0.1 Hz
'AGCActionTime': 5.00, # seconds
'ACEgain' : 0.0,#2.0,
'AGCType':'TLB : 0', # Tie-Line Bias
'UseAreaDroop' : False,
'AreaDroop' : 0.05,
'IncludeIACE' : True,
'IACEconditional': False,
'IACEwindow' : 15, # seconds - size of window - 0 for non window
'IACEscale' : 1/5,
'IACEdeadband' : 0, # Hz
'ACEFiltering': 'PI : 0.04 0.0001',
'AGCDeadband' : None, # MW? -> not implemented
'GovDeadbandType' : 'none', # step, None, ramp, nldroop
'GovDeadband' : .036, # Hz
'GovAlpha' : 0.016, # Hz - for nldroop
'GovBeta' : 0.036, # Hz - for nldroop
'CtrlGens': ['gen 1 : 1 : rampA']
},
'BA2':{
'Area':2,
'B': "1.0 : perload", # MW/0.1 Hz
'AGCActionTime': 5.00, # seconds
'ACEgain' : 0.0,#2.0,
'AGCType':'TLB : 0', # Tie-Line Bias
'UseAreaDroop' : False,
'AreaDroop' : 0.05,
'IncludeIACE' : True,
'IACEconditional': False,
'IACEwindow' : 15, # seconds - size of window - 0 for non window
'IACEscale' : 1/5,
'IACEdeadband' : 0, # Hz
'ACEFiltering': 'PI : 0.04 0.0001',
'AGCDeadband' : None, # MW? -> not implemented
'GovDeadbandType' : 'none', # step, None, ramp, nldroop
'GovDeadband' : .036, # Hz
'GovAlpha' : 0.016, # Hz - for nldroop
'GovBeta' : 0.036, # Hz - for nldroop
'CtrlGens': ['gen 3 : 1.0 : rampA',]
},
}
| mirror.sysPerturbances = ['gen 5 : step Pm 2 -50 rel']
mirror.govDelay = {'delaygen1': {'genBus': 1, 'genId': None, 'wDelay': (0, 0), 'PrefDelay': (0, 0)}}
mirror.sysBA = {'BA1': {'Area': 1, 'B': '1.0 : perload', 'AGCActionTime': 5.0, 'ACEgain': 0.0, 'AGCType': 'TLB : 0', 'UseAreaDroop': False, 'AreaDroop': 0.05, 'IncludeIACE': True, 'IACEconditional': False, 'IACEwindow': 15, 'IACEscale': 1 / 5, 'IACEdeadband': 0, 'ACEFiltering': 'PI : 0.04 0.0001', 'AGCDeadband': None, 'GovDeadbandType': 'none', 'GovDeadband': 0.036, 'GovAlpha': 0.016, 'GovBeta': 0.036, 'CtrlGens': ['gen 1 : 1 : rampA']}, 'BA2': {'Area': 2, 'B': '1.0 : perload', 'AGCActionTime': 5.0, 'ACEgain': 0.0, 'AGCType': 'TLB : 0', 'UseAreaDroop': False, 'AreaDroop': 0.05, 'IncludeIACE': True, 'IACEconditional': False, 'IACEwindow': 15, 'IACEscale': 1 / 5, 'IACEdeadband': 0, 'ACEFiltering': 'PI : 0.04 0.0001', 'AGCDeadband': None, 'GovDeadbandType': 'none', 'GovDeadband': 0.036, 'GovAlpha': 0.016, 'GovBeta': 0.036, 'CtrlGens': ['gen 3 : 1.0 : rampA']}} |
class ResponseText:
MESSAGE_REGISTER_USER = "User created successfully."
MESSAGE_USER_PASSWORD_REQUIRED = "Username and password are required fields"
DESCRIPTION_AUTH = "Invalid credentials"
DESCRIPTION_AUTH_ERROR = "Request does not contain an access token"
ERROR_AUTH = "Bad Request"
ERROR_AUTH_TEXT = "Authorization Required"
MESSAGE_ADD_USER_INFO = "User info created successfully."
MESSAGE_UPDATE_USER_INFO = "User info updated successfully."
MESSAGE_USER_NOT_FOUND = "User not found"
MESSAGE_INFO_NOT_FOUND = "User info not found"
MESSAGE_INFO_NOT_FOUND_DOT = "User info not found."
MESSAGE_DELETE_USER_INFO = "User info deleted."
MESSAGE_STORE_EXIST = "A store with name '{}' already exists."
MESSAGE_STORE_NOT_FOUND = "Store not found"
| class Responsetext:
message_register_user = 'User created successfully.'
message_user_password_required = 'Username and password are required fields'
description_auth = 'Invalid credentials'
description_auth_error = 'Request does not contain an access token'
error_auth = 'Bad Request'
error_auth_text = 'Authorization Required'
message_add_user_info = 'User info created successfully.'
message_update_user_info = 'User info updated successfully.'
message_user_not_found = 'User not found'
message_info_not_found = 'User info not found'
message_info_not_found_dot = 'User info not found.'
message_delete_user_info = 'User info deleted.'
message_store_exist = "A store with name '{}' already exists."
message_store_not_found = 'Store not found' |
'''https://leetcode.com/problems/first-missing-positive/
41. First Missing Positive
Hard
7625
1170
Add to List
Share
Given an unsorted integer array nums, return the smallest missing positive integer.
You must implement an algorithm that runs in O(n) time and uses constant extra space.
Example 1:
Input: nums = [1,2,0]
Output: 3
Example 2:
Input: nums = [3,4,-1,1]
Output: 2
Example 3:
Input: nums = [7,8,9,11,12]
Output: 1
Constraints:
1 <= nums.length <= 5 * 105
-231 <= nums[i] <= 231 - 1'''
class Solution:
def firstMissingPositive(self, nums: List[int]) -> int:
i = 0
n = len(nums)
while (i < n):
correct = nums[i] - 1
if (nums[i] > 0 and nums[i] <= n and nums[i] != nums[correct]):
nums[i], nums[correct] = nums[correct], nums[i]
else:
i += 1
for index in range(n):
if (nums[index] != index+1):
return index+1
return n+1
| """https://leetcode.com/problems/first-missing-positive/
41. First Missing Positive
Hard
7625
1170
Add to List
Share
Given an unsorted integer array nums, return the smallest missing positive integer.
You must implement an algorithm that runs in O(n) time and uses constant extra space.
Example 1:
Input: nums = [1,2,0]
Output: 3
Example 2:
Input: nums = [3,4,-1,1]
Output: 2
Example 3:
Input: nums = [7,8,9,11,12]
Output: 1
Constraints:
1 <= nums.length <= 5 * 105
-231 <= nums[i] <= 231 - 1"""
class Solution:
def first_missing_positive(self, nums: List[int]) -> int:
i = 0
n = len(nums)
while i < n:
correct = nums[i] - 1
if nums[i] > 0 and nums[i] <= n and (nums[i] != nums[correct]):
(nums[i], nums[correct]) = (nums[correct], nums[i])
else:
i += 1
for index in range(n):
if nums[index] != index + 1:
return index + 1
return n + 1 |
print("selamat datang di aplikasi kalkulator full edition ")
print("silahkan pilih")
def tambah(a,b): #def pada disamping digunakan untuk membuat suatu fungsi untuk operasi matematika #
return a+b
def kurang(a,b): #yang dimana fungsi return itu adalah tetap walaupun variable diubah#
return a-b
def kali(a,b):
return a*b
def pangkat(a,b):
return a**b
def bagi(a,b):
return a/b
def mod(a,b):
return a%b
def factorial(a):
hasil=1
for i in range(1,a+1):
hasil=hasil*i
return hasil
def hitungpersegipanjang(p,l):
return p*l
def hitungsegitiga(a,t):
return 1/2*a*t
def hitungtrapesium(a,b,t):
return 1/2*(a+b)*t
def hitungpersegi(s):
return s*s
def menu():
print("1. tambah")
print("2. KURANG")
print("3. KALI")
print("4. PANGKAT")
print("5. BAGI")
print("6. mod") #menu() bertujuan untuk menampilkan menu yang sudah ada di dalam fungsi tersebut#
print("7. factorial")
print("8. hitung luas")
print("0. keluar")
menu()
pilihan="" #sebuah string kosong agar dikenali ole perintah while#
while pilihan !=0: #apabila pilihan nya bukan angka 0 maka program akan terus berulang sampai pilih angka 0 baru berhenti#
pilihan=int(input("silahkan masukkan pilihan : "))
if pilihan==1:
angka1=float(input("masukkan angka pertama : "))
angka2=float(input("masukkan angka sekali lagi : "))
print(angka1,"+",angka2,"=",tambah(angka1,angka2))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==2: #Input ada adalam if masing masing agar pilihan tersebut tidak bercampur aduk contoh faktorial#
angka1=float(input("masukkan angka : ")) #hanya membutuhkan satu buah input saja jika kita tidak memasukkan input dalam if maka semua inputnya jadi 2#
angka2=float(input("masukkan angka sekali lagi : "))
print(angka1,"-",angka2,"=",kurang(angka1,angka2)) #tujuan dari input float adalah agar bisa menghitung operasi matematika yang berbentuk koma#
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==3:
angka1=float(input("masukkan angka : "))
angka2=float(input("masukkan angka sekali lagi : "))
print(angka1,"x",angka2,"=",kali(angka1,angka2))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==4:
angka1=float(input("masukkan angka : "))
angka2=float(input("masukkan angka sekali lagi : "))
print(angka1,"^",angka2,"=",pangkat(angka1,angka2))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==5:
angka1=float(input("masukkan angka : "))
angka2=float(input("masukkan angka sekali lagi : "))
print(angka1,"/",angka2,"=",bagi(angka1,angka2))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==6:
angka1=float(input("masukkan angka : "))
angka2=float(input("masukkan angka sekali lagi : "))
print(angka1,"%",angka2,"=",mod(angka1,angka2))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==7:
angka1=int(input("masukkan satu angka : "))
print(angka1,"!","=",factorial(angka1))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==8:
print("1.luas persegi panjang")
print("2.luas segitiga")
print("3.luas trapesium")
print("4.luas persegi")
choice=int(input("silahkan pilih : "))
if choice==1:
panjang=float(input("masukkan panjang : "))
lebar=float(input("masukkan lebar : "))
print(panjang,"*",lebar,"=",hitungpersegipanjang(panjang,lebar))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif choice==2:
alas=float(input("masukkan nilai alas : "))
tinggi=float(input("masukkan nilai tinggi : "))
print("1/2*",alas,"*",tinggi,"=",hitungsegitiga(alas,tinggi))
print("luas nya adalah = ",hitungsegitiga(alas,tinggi))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif choice==3:
sisiAtas=float(input("masukkan nilai sisi atas : "))
sisiBawah=float(input("masukkan nilai sisi bawah : "))
tinggi=float(input("masukkan nilai tinggi : "))
print("1/2*(",sisiAtas,"+",sisiBawah,")","*",tinggi,"=",hitungtrapesium(sisiAtas,sisiBawah,tinggi))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif choice==4:
sisi=float(input("masukkan nilai sisinya : "))
print(sisi,"*",sisi,"=",hitungpersegi(sisi))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
else:
print("maaf tidak ad menu tersebut")
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==0:
print("Jangan lupa beri rating ya")
else:
print("maaf tidak ad menu tersebut")
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
| print('selamat datang di aplikasi kalkulator full edition ')
print('silahkan pilih')
def tambah(a, b):
return a + b
def kurang(a, b):
return a - b
def kali(a, b):
return a * b
def pangkat(a, b):
return a ** b
def bagi(a, b):
return a / b
def mod(a, b):
return a % b
def factorial(a):
hasil = 1
for i in range(1, a + 1):
hasil = hasil * i
return hasil
def hitungpersegipanjang(p, l):
return p * l
def hitungsegitiga(a, t):
return 1 / 2 * a * t
def hitungtrapesium(a, b, t):
return 1 / 2 * (a + b) * t
def hitungpersegi(s):
return s * s
def menu():
print('1. tambah')
print('2. KURANG')
print('3. KALI')
print('4. PANGKAT')
print('5. BAGI')
print('6. mod')
print('7. factorial')
print('8. hitung luas')
print('0. keluar')
menu()
pilihan = ''
while pilihan != 0:
pilihan = int(input('silahkan masukkan pilihan : '))
if pilihan == 1:
angka1 = float(input('masukkan angka pertama : '))
angka2 = float(input('masukkan angka sekali lagi : '))
print(angka1, '+', angka2, '=', tambah(angka1, angka2))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 2:
angka1 = float(input('masukkan angka : '))
angka2 = float(input('masukkan angka sekali lagi : '))
print(angka1, '-', angka2, '=', kurang(angka1, angka2))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 3:
angka1 = float(input('masukkan angka : '))
angka2 = float(input('masukkan angka sekali lagi : '))
print(angka1, 'x', angka2, '=', kali(angka1, angka2))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 4:
angka1 = float(input('masukkan angka : '))
angka2 = float(input('masukkan angka sekali lagi : '))
print(angka1, '^', angka2, '=', pangkat(angka1, angka2))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 5:
angka1 = float(input('masukkan angka : '))
angka2 = float(input('masukkan angka sekali lagi : '))
print(angka1, '/', angka2, '=', bagi(angka1, angka2))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 6:
angka1 = float(input('masukkan angka : '))
angka2 = float(input('masukkan angka sekali lagi : '))
print(angka1, '%', angka2, '=', mod(angka1, angka2))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 7:
angka1 = int(input('masukkan satu angka : '))
print(angka1, '!', '=', factorial(angka1))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 8:
print('1.luas persegi panjang')
print('2.luas segitiga')
print('3.luas trapesium')
print('4.luas persegi')
choice = int(input('silahkan pilih : '))
if choice == 1:
panjang = float(input('masukkan panjang : '))
lebar = float(input('masukkan lebar : '))
print(panjang, '*', lebar, '=', hitungpersegipanjang(panjang, lebar))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif choice == 2:
alas = float(input('masukkan nilai alas : '))
tinggi = float(input('masukkan nilai tinggi : '))
print('1/2*', alas, '*', tinggi, '=', hitungsegitiga(alas, tinggi))
print('luas nya adalah = ', hitungsegitiga(alas, tinggi))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif choice == 3:
sisi_atas = float(input('masukkan nilai sisi atas : '))
sisi_bawah = float(input('masukkan nilai sisi bawah : '))
tinggi = float(input('masukkan nilai tinggi : '))
print('1/2*(', sisiAtas, '+', sisiBawah, ')', '*', tinggi, '=', hitungtrapesium(sisiAtas, sisiBawah, tinggi))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif choice == 4:
sisi = float(input('masukkan nilai sisinya : '))
print(sisi, '*', sisi, '=', hitungpersegi(sisi))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
else:
print('maaf tidak ad menu tersebut')
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 0:
print('Jangan lupa beri rating ya')
else:
print('maaf tidak ad menu tersebut')
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu() |
class Solution:
def getStrongest(self, arr: List[int], k: int) -> List[int]:
arr.sort()
n = len(arr)
m = n//2
if n%2==0:
m -= 1
result = []
left, right = 0, n-1
for i in range(k):
if arr[m] - arr[left] > arr[right] - arr[m]:
result.append(arr[left])
left += 1
else:
result.append(arr[right])
right -= 1
return result
| class Solution:
def get_strongest(self, arr: List[int], k: int) -> List[int]:
arr.sort()
n = len(arr)
m = n // 2
if n % 2 == 0:
m -= 1
result = []
(left, right) = (0, n - 1)
for i in range(k):
if arr[m] - arr[left] > arr[right] - arr[m]:
result.append(arr[left])
left += 1
else:
result.append(arr[right])
right -= 1
return result |
class Tab:
def __init__(self, tosh, prompt_key_bindings=False):
self._tosh = tosh
self.title = 'Tab'
self.layout = None
self.prompt_key_bindings = prompt_key_bindings
def close(self):
self._tosh.window.close_tab(self)
| class Tab:
def __init__(self, tosh, prompt_key_bindings=False):
self._tosh = tosh
self.title = 'Tab'
self.layout = None
self.prompt_key_bindings = prompt_key_bindings
def close(self):
self._tosh.window.close_tab(self) |
name= input("Enter file:")
handle= open(name)
counts= dict()
for line in handle:
words= line.split()
for word in words:
counts[word]= counts.get(word,0) + 1
bigcount= None
bigword= None
for word,count in counts.items():
if bigcount is None or count>bigcount:
bigword= word
bigcount= count
print(bigword, bigcount)
| name = input('Enter file:')
handle = open(name)
counts = dict()
for line in handle:
words = line.split()
for word in words:
counts[word] = counts.get(word, 0) + 1
bigcount = None
bigword = None
for (word, count) in counts.items():
if bigcount is None or count > bigcount:
bigword = word
bigcount = count
print(bigword, bigcount) |
theme_colors = {
'header': '#015249',
'cell_color':'#535353',
'table_header_color':'#A5A5AF',
'table_background_color_odd':'#e4e4e7',
'grand_total':'#0074D9',
'text':'#535353'
} | theme_colors = {'header': '#015249', 'cell_color': '#535353', 'table_header_color': '#A5A5AF', 'table_background_color_odd': '#e4e4e7', 'grand_total': '#0074D9', 'text': '#535353'} |
def recursive_multiply(a, b):
A = max(a, b)
B = min(a, b)
return helper_recursive_multiply(A, B)
def helper_recursive_multiply(a, b):
if b == 1:
return a
if b == 0:
return 0
half_b = int(b >> 1)
if b > half_b + half_b: # odd b. shifting with truncation eliminates a 1
return a + helper_recursive_multiply(a << 1, half_b) # odd case
else:
return helper_recursive_multiply(a << 1, half_b) # even case
| def recursive_multiply(a, b):
a = max(a, b)
b = min(a, b)
return helper_recursive_multiply(A, B)
def helper_recursive_multiply(a, b):
if b == 1:
return a
if b == 0:
return 0
half_b = int(b >> 1)
if b > half_b + half_b:
return a + helper_recursive_multiply(a << 1, half_b)
else:
return helper_recursive_multiply(a << 1, half_b) |
# -*- coding:utf-8 -*-
class Heap:
def __init__(self,cmp_f):
self.cmp = cmp_f
self.heap = []
def siftDown(self,i):
target= i
left = 2*i + 1
right = 2*i + 2
if left < self.size() and self.cmp(self.heap[left],self.heap[target]):
target = left
if right < self.size() and self.cmp(self.heap[right],self.heap[target]):
target = right
if target != i:
self.heap[target],self.heap[i] = self.heap[i],self.heap[target]
self.siftDown(target)
def size(self,):
return len(self.heap)
def pop(self,):
if self.size() ==0:
return None
self.heap[0],self.heap[-1] = self.heap[-1],self.heap[0]
elem = self.heap.pop()
self.siftDown(0)
return elem
def insert(self,num):
self.heap.append(num)
i = self.size() - 1
parent = (i-1)>>1
while(i>0 and self.cmp(self.heap[i],self.heap[parent])):
self.heap[parent],self.heap[i] = self.heap[i],self.heap[parent]
i = parent
parent = (i-1)>>1
def top(self,):
return self.heap[0]
class Solution:
def __init__(self,):
self.maxHeap = Heap(lambda x,y:x>y)
self.minHeap = Heap(lambda x,y:x<y)
def Insert(self, num):
# write code here
if self.maxHeap.size() == self.minHeap.size():
self.minHeap.insert(num)
self.maxHeap.insert(self.minHeap.pop())
else:
self.maxHeap.insert(num)
self.minHeap.insert(self.maxHeap.pop())
def GetMedian(self,n=None):
# write code here
if self.maxHeap.size() == self.minHeap.size():
return (self.maxHeap.top()+self.minHeap.top())/2.0
else:
return self.maxHeap.top()*1.0
| class Heap:
def __init__(self, cmp_f):
self.cmp = cmp_f
self.heap = []
def sift_down(self, i):
target = i
left = 2 * i + 1
right = 2 * i + 2
if left < self.size() and self.cmp(self.heap[left], self.heap[target]):
target = left
if right < self.size() and self.cmp(self.heap[right], self.heap[target]):
target = right
if target != i:
(self.heap[target], self.heap[i]) = (self.heap[i], self.heap[target])
self.siftDown(target)
def size(self):
return len(self.heap)
def pop(self):
if self.size() == 0:
return None
(self.heap[0], self.heap[-1]) = (self.heap[-1], self.heap[0])
elem = self.heap.pop()
self.siftDown(0)
return elem
def insert(self, num):
self.heap.append(num)
i = self.size() - 1
parent = i - 1 >> 1
while i > 0 and self.cmp(self.heap[i], self.heap[parent]):
(self.heap[parent], self.heap[i]) = (self.heap[i], self.heap[parent])
i = parent
parent = i - 1 >> 1
def top(self):
return self.heap[0]
class Solution:
def __init__(self):
self.maxHeap = heap(lambda x, y: x > y)
self.minHeap = heap(lambda x, y: x < y)
def insert(self, num):
if self.maxHeap.size() == self.minHeap.size():
self.minHeap.insert(num)
self.maxHeap.insert(self.minHeap.pop())
else:
self.maxHeap.insert(num)
self.minHeap.insert(self.maxHeap.pop())
def get_median(self, n=None):
if self.maxHeap.size() == self.minHeap.size():
return (self.maxHeap.top() + self.minHeap.top()) / 2.0
else:
return self.maxHeap.top() * 1.0 |
# Queue
# cf. Stack #10828
queue = []
for _ in range(int(input())):
op = input().split() # operator, operand
if op[0] == 'push':
queue.append(op[1])
elif op[0] == 'pop':
try:
print(queue.pop(0))
except IndexError as e:
print(-1)
elif op[0] == 'size':
print(len(queue))
elif op[0] == 'empty':
if len(queue) == 0:
print(1)
else:
print(0)
elif op[0] == 'front':
if len(queue) != 0:
print(queue[0])
else:
print(-1)
elif op[0] == 'back':
if len(queue) != 0:
print(queue[-1])
else:
print(-1)
| queue = []
for _ in range(int(input())):
op = input().split()
if op[0] == 'push':
queue.append(op[1])
elif op[0] == 'pop':
try:
print(queue.pop(0))
except IndexError as e:
print(-1)
elif op[0] == 'size':
print(len(queue))
elif op[0] == 'empty':
if len(queue) == 0:
print(1)
else:
print(0)
elif op[0] == 'front':
if len(queue) != 0:
print(queue[0])
else:
print(-1)
elif op[0] == 'back':
if len(queue) != 0:
print(queue[-1])
else:
print(-1) |
# coding: utf-8
y1 = stencil(1, 3, 1)
y2 = stencil((-1,1), (3,4), (2,2))
y3 = stencil((-1,0,1), (3,4,5), (2,2,2))
| y1 = stencil(1, 3, 1)
y2 = stencil((-1, 1), (3, 4), (2, 2))
y3 = stencil((-1, 0, 1), (3, 4, 5), (2, 2, 2)) |
'''
lamlight.constants
~~~~~~~~~~~~~~~~~~~
Module contains the constants used in the project.
Module contains the following type of constats
1) error messages
2) console commands
3) logging messages
4) general constatns
'''
LAMLIGHT_CONF = '.lamlight.config'
# error_message
NO_LAMBDA_FUNCTION = " Lambda function with '{}' name does not exist."
SCAFFOLDING_ERROR = 'Could not create project Scaffolding.'
CODE_PULLING_ERROR = "cannot load the code base for '{}' lambda "
PACKAGIN_ERROR = "Could not create the code package."
NO_LAMLIGHT_PROJECT = 'Not a Lamlight project. Get in lamlight by connection to one lambda function'
LAMBDA_ALREADY_EXISTS = " Lambda function with '{}' name already exists."
DIRECTORY_ALREADY_EXISTS = 'Directory with name {} already exists'
# console commands
PIP_UPGRADE = "pip install --upgrade pip"
PIP_REQ_INSTALL = "pip install --upgrade --no-cache-dir -r requirements.txt -t temp_dependencies/"
ZIP_DEPENDENCY = 'cd temp_dependencies && zip -r ../.requirements.zip .'
# logger messages
CONNECT_TO_LAMBDA = "Your project is connected to '{}' lambda function"
# general
DEPENDENCY_DIR = 'temp_dependencies/'
BUCKET_NAME = 'lambda-code-{}-{}'
| """
lamlight.constants
~~~~~~~~~~~~~~~~~~~
Module contains the constants used in the project.
Module contains the following type of constats
1) error messages
2) console commands
3) logging messages
4) general constatns
"""
lamlight_conf = '.lamlight.config'
no_lambda_function = " Lambda function with '{}' name does not exist."
scaffolding_error = 'Could not create project Scaffolding.'
code_pulling_error = "cannot load the code base for '{}' lambda "
packagin_error = 'Could not create the code package.'
no_lamlight_project = 'Not a Lamlight project. Get in lamlight by connection to one lambda function'
lambda_already_exists = " Lambda function with '{}' name already exists."
directory_already_exists = 'Directory with name {} already exists'
pip_upgrade = 'pip install --upgrade pip'
pip_req_install = 'pip install --upgrade --no-cache-dir -r requirements.txt -t temp_dependencies/'
zip_dependency = 'cd temp_dependencies && zip -r ../.requirements.zip .'
connect_to_lambda = "Your project is connected to '{}' lambda function"
dependency_dir = 'temp_dependencies/'
bucket_name = 'lambda-code-{}-{}' |
# Copyright 2018 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load("@io_bazel_rules_k8s//k8s:object.bzl", "k8s_object")
def _impl(ctx):
args = [
"--output=%s" % ctx.outputs.output.path,
"--name=%s" % ctx.label.name[:-len(".generated-yaml")],
"--namespace=%s" % ctx.attr.namespace,
]
for key, value in ctx.attr.labels.items():
args.append("--label=%s=%s" % (key, value))
# Build the {string: label} dict
targets = {}
for i, t in enumerate(ctx.attr.data_strings):
targets[t] = ctx.attr.data_labels[i]
for name, label in ctx.attr.data.items():
fp = targets[label].files.to_list()[0].path
args.append(ctx.expand_location("--data=%s=%s" % (name, fp)))
ctx.actions.run(
inputs=ctx.files.data_labels,
outputs=[ctx.outputs.output],
executable=ctx.executable._writer,
arguments=args,
progress_message="creating %s..." % ctx.outputs.output.short_path,
)
# See https://docs.bazel.build/versions/master/skylark/rules.html
_k8s_configmap = rule(
implementation = _impl,
attrs={
# TODO(fejta): switch to string_keyed_label_dict once it exists
"data": attr.string_dict(mandatory=True, allow_empty=False),
"namespace": attr.string(),
"cluster": attr.string(),
"labels": attr.string_dict(),
"output": attr.output(mandatory=True),
# private attrs, the data_* are used to create a {string: label} dict
"data_strings": attr.string_list(mandatory=True),
"data_labels": attr.label_list(mandatory=True, allow_files=True),
"_writer": attr.label(executable=True, cfg="host", allow_files=True,
default=Label("//def/configmap")),
},
)
# A macro to create a configmap object as well as rules to manage it.
#
# Usage:
# k8s_configmap("something", data={"foo": "//path/to/foo.json"})
#
# This is roughly equivalent to:
# kubectl create configmap something --from-file=foo=path/to/foo.json
# Supports cluster=kubectl_context, namespace="blah", labels={"app": "fancy"}
# as well as any args k8s_object supports.
#
# Generates a k8s_object(kind="configmap") with the generated template.
#
# See also:
# * https://docs.bazel.build/versions/master/skylark/macros.html
# * https://github.com/bazelbuild/rules_k8s#k8s_object
def k8s_configmap(name, data=None, namespace='', labels=None, cluster='', **kw):
# Create the non-duplicated list of data values
_data = data or {}
_data_targets = {v: None for v in _data.values()}.keys()
# Create the rule to generate the configmap
_k8s_configmap(
name = name + ".generated-yaml",
data=data,
namespace=namespace,
labels=labels,
output=name + "_configmap.yaml",
data_strings=_data_targets,
data_labels=_data_targets,
)
# Run k8s_object with the generated configmap
k8s_object(
name = name,
kind = "configmap",
template = name + "_configmap.yaml",
cluster = cluster,
namespace = namespace,
**kw)
| load('@io_bazel_rules_k8s//k8s:object.bzl', 'k8s_object')
def _impl(ctx):
args = ['--output=%s' % ctx.outputs.output.path, '--name=%s' % ctx.label.name[:-len('.generated-yaml')], '--namespace=%s' % ctx.attr.namespace]
for (key, value) in ctx.attr.labels.items():
args.append('--label=%s=%s' % (key, value))
targets = {}
for (i, t) in enumerate(ctx.attr.data_strings):
targets[t] = ctx.attr.data_labels[i]
for (name, label) in ctx.attr.data.items():
fp = targets[label].files.to_list()[0].path
args.append(ctx.expand_location('--data=%s=%s' % (name, fp)))
ctx.actions.run(inputs=ctx.files.data_labels, outputs=[ctx.outputs.output], executable=ctx.executable._writer, arguments=args, progress_message='creating %s...' % ctx.outputs.output.short_path)
_k8s_configmap = rule(implementation=_impl, attrs={'data': attr.string_dict(mandatory=True, allow_empty=False), 'namespace': attr.string(), 'cluster': attr.string(), 'labels': attr.string_dict(), 'output': attr.output(mandatory=True), 'data_strings': attr.string_list(mandatory=True), 'data_labels': attr.label_list(mandatory=True, allow_files=True), '_writer': attr.label(executable=True, cfg='host', allow_files=True, default=label('//def/configmap'))})
def k8s_configmap(name, data=None, namespace='', labels=None, cluster='', **kw):
_data = data or {}
_data_targets = {v: None for v in _data.values()}.keys()
_k8s_configmap(name=name + '.generated-yaml', data=data, namespace=namespace, labels=labels, output=name + '_configmap.yaml', data_strings=_data_targets, data_labels=_data_targets)
k8s_object(name=name, kind='configmap', template=name + '_configmap.yaml', cluster=cluster, namespace=namespace, **kw) |
# pylint: skip-file
# This file is part of 'miniver': https://github.com/jbweston/miniver
#
# This file will be overwritten by setup.py when a source or binary
# distribution is made. The magic value "__use_git__" is interpreted by
# version.py.
version = "__use_git__"
# These values are only set if the distribution was created with 'git archive'
refnames = "$Format:%D$"
git_hash = "$Format:%h$"
| version = '__use_git__'
refnames = '$Format:%D$'
git_hash = '$Format:%h$' |
data = (
' @ ', # 0x00
' ... ', # 0x01
', ', # 0x02
'. ', # 0x03
': ', # 0x04
' // ', # 0x05
'', # 0x06
'-', # 0x07
', ', # 0x08
'. ', # 0x09
'', # 0x0a
'', # 0x0b
'', # 0x0c
'', # 0x0d
'', # 0x0e
'[?]', # 0x0f
'0', # 0x10
'1', # 0x11
'2', # 0x12
'3', # 0x13
'4', # 0x14
'5', # 0x15
'6', # 0x16
'7', # 0x17
'8', # 0x18
'9', # 0x19
'[?]', # 0x1a
'[?]', # 0x1b
'[?]', # 0x1c
'[?]', # 0x1d
'[?]', # 0x1e
'[?]', # 0x1f
'a', # 0x20
'e', # 0x21
'i', # 0x22
'o', # 0x23
'u', # 0x24
'O', # 0x25
'U', # 0x26
'ee', # 0x27
'n', # 0x28
'ng', # 0x29
'b', # 0x2a
'p', # 0x2b
'q', # 0x2c
'g', # 0x2d
'm', # 0x2e
'l', # 0x2f
's', # 0x30
'sh', # 0x31
't', # 0x32
'd', # 0x33
'ch', # 0x34
'j', # 0x35
'y', # 0x36
'r', # 0x37
'w', # 0x38
'f', # 0x39
'k', # 0x3a
'kha', # 0x3b
'ts', # 0x3c
'z', # 0x3d
'h', # 0x3e
'zr', # 0x3f
'lh', # 0x40
'zh', # 0x41
'ch', # 0x42
'-', # 0x43
'e', # 0x44
'i', # 0x45
'o', # 0x46
'u', # 0x47
'O', # 0x48
'U', # 0x49
'ng', # 0x4a
'b', # 0x4b
'p', # 0x4c
'q', # 0x4d
'g', # 0x4e
'm', # 0x4f
't', # 0x50
'd', # 0x51
'ch', # 0x52
'j', # 0x53
'ts', # 0x54
'y', # 0x55
'w', # 0x56
'k', # 0x57
'g', # 0x58
'h', # 0x59
'jy', # 0x5a
'ny', # 0x5b
'dz', # 0x5c
'e', # 0x5d
'i', # 0x5e
'iy', # 0x5f
'U', # 0x60
'u', # 0x61
'ng', # 0x62
'k', # 0x63
'g', # 0x64
'h', # 0x65
'p', # 0x66
'sh', # 0x67
't', # 0x68
'd', # 0x69
'j', # 0x6a
'f', # 0x6b
'g', # 0x6c
'h', # 0x6d
'ts', # 0x6e
'z', # 0x6f
'r', # 0x70
'ch', # 0x71
'zh', # 0x72
'i', # 0x73
'k', # 0x74
'r', # 0x75
'f', # 0x76
'zh', # 0x77
'[?]', # 0x78
'[?]', # 0x79
'[?]', # 0x7a
'[?]', # 0x7b
'[?]', # 0x7c
'[?]', # 0x7d
'[?]', # 0x7e
'[?]', # 0x7f
'[?]', # 0x80
'H', # 0x81
'X', # 0x82
'W', # 0x83
'M', # 0x84
' 3 ', # 0x85
' 333 ', # 0x86
'a', # 0x87
'i', # 0x88
'k', # 0x89
'ng', # 0x8a
'c', # 0x8b
'tt', # 0x8c
'tth', # 0x8d
'dd', # 0x8e
'nn', # 0x8f
't', # 0x90
'd', # 0x91
'p', # 0x92
'ph', # 0x93
'ss', # 0x94
'zh', # 0x95
'z', # 0x96
'a', # 0x97
't', # 0x98
'zh', # 0x99
'gh', # 0x9a
'ng', # 0x9b
'c', # 0x9c
'jh', # 0x9d
'tta', # 0x9e
'ddh', # 0x9f
't', # 0xa0
'dh', # 0xa1
'ss', # 0xa2
'cy', # 0xa3
'zh', # 0xa4
'z', # 0xa5
'u', # 0xa6
'y', # 0xa7
'bh', # 0xa8
'\'', # 0xa9
'[?]', # 0xaa
'[?]', # 0xab
'[?]', # 0xac
'[?]', # 0xad
'[?]', # 0xae
'[?]', # 0xaf
'[?]', # 0xb0
'[?]', # 0xb1
'[?]', # 0xb2
'[?]', # 0xb3
'[?]', # 0xb4
'[?]', # 0xb5
'[?]', # 0xb6
'[?]', # 0xb7
'[?]', # 0xb8
'[?]', # 0xb9
'[?]', # 0xba
'[?]', # 0xbb
'[?]', # 0xbc
'[?]', # 0xbd
'[?]', # 0xbe
'[?]', # 0xbf
'[?]', # 0xc0
'[?]', # 0xc1
'[?]', # 0xc2
'[?]', # 0xc3
'[?]', # 0xc4
'[?]', # 0xc5
'[?]', # 0xc6
'[?]', # 0xc7
'[?]', # 0xc8
'[?]', # 0xc9
'[?]', # 0xca
'[?]', # 0xcb
'[?]', # 0xcc
'[?]', # 0xcd
'[?]', # 0xce
'[?]', # 0xcf
'[?]', # 0xd0
'[?]', # 0xd1
'[?]', # 0xd2
'[?]', # 0xd3
'[?]', # 0xd4
'[?]', # 0xd5
'[?]', # 0xd6
'[?]', # 0xd7
'[?]', # 0xd8
'[?]', # 0xd9
'[?]', # 0xda
'[?]', # 0xdb
'[?]', # 0xdc
'[?]', # 0xdd
'[?]', # 0xde
'[?]', # 0xdf
'[?]', # 0xe0
'[?]', # 0xe1
'[?]', # 0xe2
'[?]', # 0xe3
'[?]', # 0xe4
'[?]', # 0xe5
'[?]', # 0xe6
'[?]', # 0xe7
'[?]', # 0xe8
'[?]', # 0xe9
'[?]', # 0xea
'[?]', # 0xeb
'[?]', # 0xec
'[?]', # 0xed
'[?]', # 0xee
'[?]', # 0xef
'[?]', # 0xf0
'[?]', # 0xf1
'[?]', # 0xf2
'[?]', # 0xf3
'[?]', # 0xf4
'[?]', # 0xf5
'[?]', # 0xf6
'[?]', # 0xf7
'[?]', # 0xf8
'[?]', # 0xf9
'[?]', # 0xfa
'[?]', # 0xfb
'[?]', # 0xfc
'[?]', # 0xfd
'[?]', # 0xfe
)
| data = (' @ ', ' ... ', ', ', '. ', ': ', ' // ', '', '-', ', ', '. ', '', '', '', '', '', '[?]', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', 'a', 'e', 'i', 'o', 'u', 'O', 'U', 'ee', 'n', 'ng', 'b', 'p', 'q', 'g', 'm', 'l', 's', 'sh', 't', 'd', 'ch', 'j', 'y', 'r', 'w', 'f', 'k', 'kha', 'ts', 'z', 'h', 'zr', 'lh', 'zh', 'ch', '-', 'e', 'i', 'o', 'u', 'O', 'U', 'ng', 'b', 'p', 'q', 'g', 'm', 't', 'd', 'ch', 'j', 'ts', 'y', 'w', 'k', 'g', 'h', 'jy', 'ny', 'dz', 'e', 'i', 'iy', 'U', 'u', 'ng', 'k', 'g', 'h', 'p', 'sh', 't', 'd', 'j', 'f', 'g', 'h', 'ts', 'z', 'r', 'ch', 'zh', 'i', 'k', 'r', 'f', 'zh', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', 'H', 'X', 'W', 'M', ' 3 ', ' 333 ', 'a', 'i', 'k', 'ng', 'c', 'tt', 'tth', 'dd', 'nn', 't', 'd', 'p', 'ph', 'ss', 'zh', 'z', 'a', 't', 'zh', 'gh', 'ng', 'c', 'jh', 'tta', 'ddh', 't', 'dh', 'ss', 'cy', 'zh', 'z', 'u', 'y', 'bh', "'", '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]', '[?]') |
def test_admin_peers(web3, skip_if_testrpc):
skip_if_testrpc(web3)
assert web3.geth.admin.peers == []
| def test_admin_peers(web3, skip_if_testrpc):
skip_if_testrpc(web3)
assert web3.geth.admin.peers == [] |
# For the 1.x version
def needs_host(func):
@wraps(func)
def inner(*args, **kwargs):
return func(*args, **kwargs)
return inner
def local(command, capture=False, shell=None):
pass
@needs_host
def run(command, shell=True, pty=True, combine_stderr=None, quiet=False,
warn_only=False, stdout=None, stderr=None, timeout=None, shell_escape=None,
capture_buffer_size=None):
pass
@needs_host
def sudo(command, shell=True, pty=True, combine_stderr=None, user=None,
quiet=False, warn_only=False, stdout=None, stderr=None, group=None,
timeout=None, shell_escape=None, capture_buffer_size=None):
pass
| def needs_host(func):
@wraps(func)
def inner(*args, **kwargs):
return func(*args, **kwargs)
return inner
def local(command, capture=False, shell=None):
pass
@needs_host
def run(command, shell=True, pty=True, combine_stderr=None, quiet=False, warn_only=False, stdout=None, stderr=None, timeout=None, shell_escape=None, capture_buffer_size=None):
pass
@needs_host
def sudo(command, shell=True, pty=True, combine_stderr=None, user=None, quiet=False, warn_only=False, stdout=None, stderr=None, group=None, timeout=None, shell_escape=None, capture_buffer_size=None):
pass |
def capitalize(s):
return s[0].upper() + s[1:]
def sqlalchemy_column_types(field_type):
if field_type == 'int':
return('Integer')
else:
return('String') | def capitalize(s):
return s[0].upper() + s[1:]
def sqlalchemy_column_types(field_type):
if field_type == 'int':
return 'Integer'
else:
return 'String' |
class RecentCounter:
def __init__(self):
self.queue = []
def ping(self, t: int) -> int:
self.queue.append(t)
while t - self.queue[0] > 3000:
self.queue.pop(0)
return len(self.queue)
# Your RecentCounter object will be instantiated and called as such:
# obj = RecentCounter()
# param_1 = obj.ping(t)
| class Recentcounter:
def __init__(self):
self.queue = []
def ping(self, t: int) -> int:
self.queue.append(t)
while t - self.queue[0] > 3000:
self.queue.pop(0)
return len(self.queue) |
if __name__ == "__main__":
print("Hello World!")
l = [1, 2, 3, 4, 5]
print("list =", l)
print(f"format string list = {l}")
print(f"sum of l = {sum(l)}")
| if __name__ == '__main__':
print('Hello World!')
l = [1, 2, 3, 4, 5]
print('list =', l)
print(f'format string list = {l}')
print(f'sum of l = {sum(l)}') |
class Chelovek:
imja = "Maksim"
def pokazatj_info(self):
print("Privet, menja zovut", self.imja)
chelovek1 = Chelovek()
chelovek1.pokazatj_info()
chelovek2 = Chelovek()
chelovek2.imja = "Tanja"
chelovek2.pokazatj_info() | class Chelovek:
imja = 'Maksim'
def pokazatj_info(self):
print('Privet, menja zovut', self.imja)
chelovek1 = chelovek()
chelovek1.pokazatj_info()
chelovek2 = chelovek()
chelovek2.imja = 'Tanja'
chelovek2.pokazatj_info() |
# Generated by h2py from /usr/include/netinet/in.h
# Included from sys/cdefs.h
def __P(protos): return protos
def __STRING(x): return #x
def __XSTRING(x): return __STRING(x)
def __P(protos): return ()
def __STRING(x): return "x"
def __aligned(x): return __attribute__((__aligned__(x)))
def __section(x): return __attribute__((__section__(x)))
def __aligned(x): return __attribute__((__aligned__(x)))
def __section(x): return __attribute__((__section__(x)))
def __nonnull(x): return __attribute__((__nonnull__(x)))
def __predict_true(exp): return __builtin_expect((exp), 1)
def __predict_false(exp): return __builtin_expect((exp), 0)
def __predict_true(exp): return (exp)
def __predict_false(exp): return (exp)
def __FBSDID(s): return __IDSTRING(__CONCAT(__rcsid_,__LINE__),s)
def __RCSID(s): return __IDSTRING(__CONCAT(__rcsid_,__LINE__),s)
def __RCSID_SOURCE(s): return __IDSTRING(__CONCAT(__rcsid_source_,__LINE__),s)
def __SCCSID(s): return __IDSTRING(__CONCAT(__sccsid_,__LINE__),s)
def __COPYRIGHT(s): return __IDSTRING(__CONCAT(__copyright_,__LINE__),s)
_POSIX_C_SOURCE = 199009
_POSIX_C_SOURCE = 199209
__XSI_VISIBLE = 600
_POSIX_C_SOURCE = 200112
__XSI_VISIBLE = 500
_POSIX_C_SOURCE = 199506
_POSIX_C_SOURCE = 198808
__POSIX_VISIBLE = 200112
__ISO_C_VISIBLE = 1999
__POSIX_VISIBLE = 199506
__ISO_C_VISIBLE = 1990
__POSIX_VISIBLE = 199309
__ISO_C_VISIBLE = 1990
__POSIX_VISIBLE = 199209
__ISO_C_VISIBLE = 1990
__POSIX_VISIBLE = 199009
__ISO_C_VISIBLE = 1990
__POSIX_VISIBLE = 198808
__ISO_C_VISIBLE = 0
__POSIX_VISIBLE = 0
__XSI_VISIBLE = 0
__BSD_VISIBLE = 0
__ISO_C_VISIBLE = 1990
__POSIX_VISIBLE = 0
__XSI_VISIBLE = 0
__BSD_VISIBLE = 0
__ISO_C_VISIBLE = 1999
__POSIX_VISIBLE = 200112
__XSI_VISIBLE = 600
__BSD_VISIBLE = 1
__ISO_C_VISIBLE = 1999
# Included from sys/_types.h
# Included from machine/_types.h
# Included from machine/endian.h
_QUAD_HIGHWORD = 1
_QUAD_LOWWORD = 0
_LITTLE_ENDIAN = 1234
_BIG_ENDIAN = 4321
_PDP_ENDIAN = 3412
_BYTE_ORDER = _LITTLE_ENDIAN
LITTLE_ENDIAN = _LITTLE_ENDIAN
BIG_ENDIAN = _BIG_ENDIAN
PDP_ENDIAN = _PDP_ENDIAN
BYTE_ORDER = _BYTE_ORDER
__INTEL_COMPILER_with_FreeBSD_endian = 1
__INTEL_COMPILER_with_FreeBSD_endian = 1
def __word_swap_int_var(x): return \
def __word_swap_int_const(x): return \
def __word_swap_int(x): return __word_swap_int_var(x)
def __byte_swap_int_var(x): return \
def __byte_swap_int_var(x): return \
def __byte_swap_int_const(x): return \
def __byte_swap_int(x): return __byte_swap_int_var(x)
def __byte_swap_word_var(x): return \
def __byte_swap_word_const(x): return \
def __byte_swap_word(x): return __byte_swap_word_var(x)
def __htonl(x): return __bswap32(x)
def __htons(x): return __bswap16(x)
def __ntohl(x): return __bswap32(x)
def __ntohs(x): return __bswap16(x)
IPPROTO_IP = 0
IPPROTO_ICMP = 1
IPPROTO_TCP = 6
IPPROTO_UDP = 17
def htonl(x): return __htonl(x)
def htons(x): return __htons(x)
def ntohl(x): return __ntohl(x)
def ntohs(x): return __ntohs(x)
IPPROTO_RAW = 255
INET_ADDRSTRLEN = 16
IPPROTO_HOPOPTS = 0
IPPROTO_IGMP = 2
IPPROTO_GGP = 3
IPPROTO_IPV4 = 4
IPPROTO_IPIP = IPPROTO_IPV4
IPPROTO_ST = 7
IPPROTO_EGP = 8
IPPROTO_PIGP = 9
IPPROTO_RCCMON = 10
IPPROTO_NVPII = 11
IPPROTO_PUP = 12
IPPROTO_ARGUS = 13
IPPROTO_EMCON = 14
IPPROTO_XNET = 15
IPPROTO_CHAOS = 16
IPPROTO_MUX = 18
IPPROTO_MEAS = 19
IPPROTO_HMP = 20
IPPROTO_PRM = 21
IPPROTO_IDP = 22
IPPROTO_TRUNK1 = 23
IPPROTO_TRUNK2 = 24
IPPROTO_LEAF1 = 25
IPPROTO_LEAF2 = 26
IPPROTO_RDP = 27
IPPROTO_IRTP = 28
IPPROTO_TP = 29
IPPROTO_BLT = 30
IPPROTO_NSP = 31
IPPROTO_INP = 32
IPPROTO_SEP = 33
IPPROTO_3PC = 34
IPPROTO_IDPR = 35
IPPROTO_XTP = 36
IPPROTO_DDP = 37
IPPROTO_CMTP = 38
IPPROTO_TPXX = 39
IPPROTO_IL = 40
IPPROTO_IPV6 = 41
IPPROTO_SDRP = 42
IPPROTO_ROUTING = 43
IPPROTO_FRAGMENT = 44
IPPROTO_IDRP = 45
IPPROTO_RSVP = 46
IPPROTO_GRE = 47
IPPROTO_MHRP = 48
IPPROTO_BHA = 49
IPPROTO_ESP = 50
IPPROTO_AH = 51
IPPROTO_INLSP = 52
IPPROTO_SWIPE = 53
IPPROTO_NHRP = 54
IPPROTO_MOBILE = 55
IPPROTO_TLSP = 56
IPPROTO_SKIP = 57
IPPROTO_ICMPV6 = 58
IPPROTO_NONE = 59
IPPROTO_DSTOPTS = 60
IPPROTO_AHIP = 61
IPPROTO_CFTP = 62
IPPROTO_HELLO = 63
IPPROTO_SATEXPAK = 64
IPPROTO_KRYPTOLAN = 65
IPPROTO_RVD = 66
IPPROTO_IPPC = 67
IPPROTO_ADFS = 68
IPPROTO_SATMON = 69
IPPROTO_VISA = 70
IPPROTO_IPCV = 71
IPPROTO_CPNX = 72
IPPROTO_CPHB = 73
IPPROTO_WSN = 74
IPPROTO_PVP = 75
IPPROTO_BRSATMON = 76
IPPROTO_ND = 77
IPPROTO_WBMON = 78
IPPROTO_WBEXPAK = 79
IPPROTO_EON = 80
IPPROTO_VMTP = 81
IPPROTO_SVMTP = 82
IPPROTO_VINES = 83
IPPROTO_TTP = 84
IPPROTO_IGP = 85
IPPROTO_DGP = 86
IPPROTO_TCF = 87
IPPROTO_IGRP = 88
IPPROTO_OSPFIGP = 89
IPPROTO_SRPC = 90
IPPROTO_LARP = 91
IPPROTO_MTP = 92
IPPROTO_AX25 = 93
IPPROTO_IPEIP = 94
IPPROTO_MICP = 95
IPPROTO_SCCSP = 96
IPPROTO_ETHERIP = 97
IPPROTO_ENCAP = 98
IPPROTO_APES = 99
IPPROTO_GMTP = 100
IPPROTO_IPCOMP = 108
IPPROTO_PIM = 103
IPPROTO_PGM = 113
IPPROTO_PFSYNC = 240
IPPROTO_OLD_DIVERT = 254
IPPROTO_MAX = 256
IPPROTO_DONE = 257
IPPROTO_DIVERT = 258
IPPORT_RESERVED = 1024
IPPORT_HIFIRSTAUTO = 49152
IPPORT_HILASTAUTO = 65535
IPPORT_RESERVEDSTART = 600
IPPORT_MAX = 65535
def IN_CLASSA(i): return (((u_int32_t)(i) & (-2147483648)) == 0)
IN_CLASSA_NET = (-16777216)
IN_CLASSA_NSHIFT = 24
IN_CLASSA_HOST = 0x00ffffff
IN_CLASSA_MAX = 128
def IN_CLASSB(i): return (((u_int32_t)(i) & (-1073741824)) == (-2147483648))
IN_CLASSB_NET = (-65536)
IN_CLASSB_NSHIFT = 16
IN_CLASSB_HOST = 0x0000ffff
IN_CLASSB_MAX = 65536
def IN_CLASSC(i): return (((u_int32_t)(i) & (-536870912)) == (-1073741824))
IN_CLASSC_NET = (-256)
IN_CLASSC_NSHIFT = 8
IN_CLASSC_HOST = 0x000000ff
def IN_CLASSD(i): return (((u_int32_t)(i) & (-268435456)) == (-536870912))
IN_CLASSD_NET = (-268435456)
IN_CLASSD_NSHIFT = 28
IN_CLASSD_HOST = 0x0fffffff
def IN_MULTICAST(i): return IN_CLASSD(i)
def IN_EXPERIMENTAL(i): return (((u_int32_t)(i) & (-268435456)) == (-268435456))
def IN_BADCLASS(i): return (((u_int32_t)(i) & (-268435456)) == (-268435456))
INADDR_NONE = (-1)
IN_LOOPBACKNET = 127
IP_OPTIONS = 1
IP_HDRINCL = 2
IP_TOS = 3
IP_TTL = 4
IP_RECVOPTS = 5
IP_RECVRETOPTS = 6
IP_RECVDSTADDR = 7
IP_SENDSRCADDR = IP_RECVDSTADDR
IP_RETOPTS = 8
IP_MULTICAST_IF = 9
IP_MULTICAST_TTL = 10
IP_MULTICAST_LOOP = 11
IP_ADD_MEMBERSHIP = 12
IP_DROP_MEMBERSHIP = 13
IP_MULTICAST_VIF = 14
IP_RSVP_ON = 15
IP_RSVP_OFF = 16
IP_RSVP_VIF_ON = 17
IP_RSVP_VIF_OFF = 18
IP_PORTRANGE = 19
IP_RECVIF = 20
IP_IPSEC_POLICY = 21
IP_FAITH = 22
IP_ONESBCAST = 23
IP_FW_TABLE_ADD = 40
IP_FW_TABLE_DEL = 41
IP_FW_TABLE_FLUSH = 42
IP_FW_TABLE_GETSIZE = 43
IP_FW_TABLE_LIST = 44
IP_FW_ADD = 50
IP_FW_DEL = 51
IP_FW_FLUSH = 52
IP_FW_ZERO = 53
IP_FW_GET = 54
IP_FW_RESETLOG = 55
IP_DUMMYNET_CONFIGURE = 60
IP_DUMMYNET_DEL = 61
IP_DUMMYNET_FLUSH = 62
IP_DUMMYNET_GET = 64
IP_RECVTTL = 65
IP_DEFAULT_MULTICAST_TTL = 1
IP_DEFAULT_MULTICAST_LOOP = 1
IP_MAX_MEMBERSHIPS = 20
IP_PORTRANGE_DEFAULT = 0
IP_PORTRANGE_HIGH = 1
IP_PORTRANGE_LOW = 2
IPPROTO_MAXID = (IPPROTO_AH + 1)
IPCTL_FORWARDING = 1
IPCTL_SENDREDIRECTS = 2
IPCTL_DEFTTL = 3
IPCTL_DEFMTU = 4
IPCTL_RTEXPIRE = 5
IPCTL_RTMINEXPIRE = 6
IPCTL_RTMAXCACHE = 7
IPCTL_SOURCEROUTE = 8
IPCTL_DIRECTEDBROADCAST = 9
IPCTL_INTRQMAXLEN = 10
IPCTL_INTRQDROPS = 11
IPCTL_STATS = 12
IPCTL_ACCEPTSOURCEROUTE = 13
IPCTL_FASTFORWARDING = 14
IPCTL_KEEPFAITH = 15
IPCTL_GIF_TTL = 16
IPCTL_MAXID = 17
def in_nullhost(x): return ((x).s_addr == INADDR_ANY)
# Included from netinet6/in6.h
__KAME_VERSION = "20010528/FreeBSD"
IPV6PORT_RESERVED = 1024
IPV6PORT_ANONMIN = 49152
IPV6PORT_ANONMAX = 65535
IPV6PORT_RESERVEDMIN = 600
IPV6PORT_RESERVEDMAX = (IPV6PORT_RESERVED-1)
INET6_ADDRSTRLEN = 46
IPV6_ADDR_INT32_ONE = 1
IPV6_ADDR_INT32_TWO = 2
IPV6_ADDR_INT32_MNL = (-16711680)
IPV6_ADDR_INT32_MLL = (-16646144)
IPV6_ADDR_INT32_SMP = 0x0000ffff
IPV6_ADDR_INT16_ULL = 0xfe80
IPV6_ADDR_INT16_USL = 0xfec0
IPV6_ADDR_INT16_MLL = 0xff02
IPV6_ADDR_INT32_ONE = 0x01000000
IPV6_ADDR_INT32_TWO = 0x02000000
IPV6_ADDR_INT32_MNL = 0x000001ff
IPV6_ADDR_INT32_MLL = 0x000002ff
IPV6_ADDR_INT32_SMP = (-65536)
IPV6_ADDR_INT16_ULL = 0x80fe
IPV6_ADDR_INT16_USL = 0xc0fe
IPV6_ADDR_INT16_MLL = 0x02ff
def IN6_IS_ADDR_UNSPECIFIED(a): return \
def IN6_IS_ADDR_LOOPBACK(a): return \
def IN6_IS_ADDR_V4COMPAT(a): return \
def IN6_IS_ADDR_V4MAPPED(a): return \
IPV6_ADDR_SCOPE_NODELOCAL = 0x01
IPV6_ADDR_SCOPE_INTFACELOCAL = 0x01
IPV6_ADDR_SCOPE_LINKLOCAL = 0x02
IPV6_ADDR_SCOPE_SITELOCAL = 0x05
IPV6_ADDR_SCOPE_ORGLOCAL = 0x08
IPV6_ADDR_SCOPE_GLOBAL = 0x0e
__IPV6_ADDR_SCOPE_NODELOCAL = 0x01
__IPV6_ADDR_SCOPE_INTFACELOCAL = 0x01
__IPV6_ADDR_SCOPE_LINKLOCAL = 0x02
__IPV6_ADDR_SCOPE_SITELOCAL = 0x05
__IPV6_ADDR_SCOPE_ORGLOCAL = 0x08
__IPV6_ADDR_SCOPE_GLOBAL = 0x0e
def IN6_IS_ADDR_LINKLOCAL(a): return \
def IN6_IS_ADDR_SITELOCAL(a): return \
def IN6_IS_ADDR_MC_NODELOCAL(a): return \
def IN6_IS_ADDR_MC_INTFACELOCAL(a): return \
def IN6_IS_ADDR_MC_LINKLOCAL(a): return \
def IN6_IS_ADDR_MC_SITELOCAL(a): return \
def IN6_IS_ADDR_MC_ORGLOCAL(a): return \
def IN6_IS_ADDR_MC_GLOBAL(a): return \
def IN6_IS_ADDR_MC_NODELOCAL(a): return \
def IN6_IS_ADDR_MC_LINKLOCAL(a): return \
def IN6_IS_ADDR_MC_SITELOCAL(a): return \
def IN6_IS_ADDR_MC_ORGLOCAL(a): return \
def IN6_IS_ADDR_MC_GLOBAL(a): return \
def IN6_IS_SCOPE_LINKLOCAL(a): return \
def IFA6_IS_DEPRECATED(a): return \
def IFA6_IS_INVALID(a): return \
IPV6_OPTIONS = 1
IPV6_RECVOPTS = 5
IPV6_RECVRETOPTS = 6
IPV6_RECVDSTADDR = 7
IPV6_RETOPTS = 8
IPV6_SOCKOPT_RESERVED1 = 3
IPV6_UNICAST_HOPS = 4
IPV6_MULTICAST_IF = 9
IPV6_MULTICAST_HOPS = 10
IPV6_MULTICAST_LOOP = 11
IPV6_JOIN_GROUP = 12
IPV6_LEAVE_GROUP = 13
IPV6_PORTRANGE = 14
ICMP6_FILTER = 18
IPV6_2292PKTINFO = 19
IPV6_2292HOPLIMIT = 20
IPV6_2292NEXTHOP = 21
IPV6_2292HOPOPTS = 22
IPV6_2292DSTOPTS = 23
IPV6_2292RTHDR = 24
IPV6_2292PKTOPTIONS = 25
IPV6_CHECKSUM = 26
IPV6_V6ONLY = 27
IPV6_BINDV6ONLY = IPV6_V6ONLY
IPV6_IPSEC_POLICY = 28
IPV6_FAITH = 29
IPV6_FW_ADD = 30
IPV6_FW_DEL = 31
IPV6_FW_FLUSH = 32
IPV6_FW_ZERO = 33
IPV6_FW_GET = 34
IPV6_RTHDRDSTOPTS = 35
IPV6_RECVPKTINFO = 36
IPV6_RECVHOPLIMIT = 37
IPV6_RECVRTHDR = 38
IPV6_RECVHOPOPTS = 39
IPV6_RECVDSTOPTS = 40
IPV6_RECVRTHDRDSTOPTS = 41
IPV6_USE_MIN_MTU = 42
IPV6_RECVPATHMTU = 43
IPV6_PATHMTU = 44
IPV6_REACHCONF = 45
IPV6_PKTINFO = 46
IPV6_HOPLIMIT = 47
IPV6_NEXTHOP = 48
IPV6_HOPOPTS = 49
IPV6_DSTOPTS = 50
IPV6_RTHDR = 51
IPV6_PKTOPTIONS = 52
IPV6_RECVTCLASS = 57
IPV6_AUTOFLOWLABEL = 59
IPV6_TCLASS = 61
IPV6_DONTFRAG = 62
IPV6_PREFER_TEMPADDR = 63
IPV6_RTHDR_LOOSE = 0
IPV6_RTHDR_STRICT = 1
IPV6_RTHDR_TYPE_0 = 0
IPV6_DEFAULT_MULTICAST_HOPS = 1
IPV6_DEFAULT_MULTICAST_LOOP = 1
IPV6_PORTRANGE_DEFAULT = 0
IPV6_PORTRANGE_HIGH = 1
IPV6_PORTRANGE_LOW = 2
IPV6PROTO_MAXID = (IPPROTO_PIM + 1)
IPV6CTL_FORWARDING = 1
IPV6CTL_SENDREDIRECTS = 2
IPV6CTL_DEFHLIM = 3
IPV6CTL_DEFMTU = 4
IPV6CTL_FORWSRCRT = 5
IPV6CTL_STATS = 6
IPV6CTL_MRTSTATS = 7
IPV6CTL_MRTPROTO = 8
IPV6CTL_MAXFRAGPACKETS = 9
IPV6CTL_SOURCECHECK = 10
IPV6CTL_SOURCECHECK_LOGINT = 11
IPV6CTL_ACCEPT_RTADV = 12
IPV6CTL_KEEPFAITH = 13
IPV6CTL_LOG_INTERVAL = 14
IPV6CTL_HDRNESTLIMIT = 15
IPV6CTL_DAD_COUNT = 16
IPV6CTL_AUTO_FLOWLABEL = 17
IPV6CTL_DEFMCASTHLIM = 18
IPV6CTL_GIF_HLIM = 19
IPV6CTL_KAME_VERSION = 20
IPV6CTL_USE_DEPRECATED = 21
IPV6CTL_RR_PRUNE = 22
IPV6CTL_MAPPED_ADDR = 23
IPV6CTL_V6ONLY = 24
IPV6CTL_RTEXPIRE = 25
IPV6CTL_RTMINEXPIRE = 26
IPV6CTL_RTMAXCACHE = 27
IPV6CTL_USETEMPADDR = 32
IPV6CTL_TEMPPLTIME = 33
IPV6CTL_TEMPVLTIME = 34
IPV6CTL_AUTO_LINKLOCAL = 35
IPV6CTL_RIP6STATS = 36
IPV6CTL_PREFER_TEMPADDR = 37
IPV6CTL_ADDRCTLPOLICY = 38
IPV6CTL_MAXFRAGS = 41
IPV6CTL_MAXID = 42
| def __p(protos):
return protos
def __string(x):
return
def __xstring(x):
return __string(x)
def __p(protos):
return ()
def __string(x):
return 'x'
def __aligned(x):
return __attribute__(__aligned__(x))
def __section(x):
return __attribute__(__section__(x))
def __aligned(x):
return __attribute__(__aligned__(x))
def __section(x):
return __attribute__(__section__(x))
def __nonnull(x):
return __attribute__(__nonnull__(x))
def __predict_true(exp):
return __builtin_expect(exp, 1)
def __predict_false(exp):
return __builtin_expect(exp, 0)
def __predict_true(exp):
return exp
def __predict_false(exp):
return exp
def __fbsdid(s):
return __idstring(__concat(__rcsid_, __LINE__), s)
def __rcsid(s):
return __idstring(__concat(__rcsid_, __LINE__), s)
def __rcsid_source(s):
return __idstring(__concat(__rcsid_source_, __LINE__), s)
def __sccsid(s):
return __idstring(__concat(__sccsid_, __LINE__), s)
def __copyright(s):
return __idstring(__concat(__copyright_, __LINE__), s)
_posix_c_source = 199009
_posix_c_source = 199209
__xsi_visible = 600
_posix_c_source = 200112
__xsi_visible = 500
_posix_c_source = 199506
_posix_c_source = 198808
__posix_visible = 200112
__iso_c_visible = 1999
__posix_visible = 199506
__iso_c_visible = 1990
__posix_visible = 199309
__iso_c_visible = 1990
__posix_visible = 199209
__iso_c_visible = 1990
__posix_visible = 199009
__iso_c_visible = 1990
__posix_visible = 198808
__iso_c_visible = 0
__posix_visible = 0
__xsi_visible = 0
__bsd_visible = 0
__iso_c_visible = 1990
__posix_visible = 0
__xsi_visible = 0
__bsd_visible = 0
__iso_c_visible = 1999
__posix_visible = 200112
__xsi_visible = 600
__bsd_visible = 1
__iso_c_visible = 1999
_quad_highword = 1
_quad_lowword = 0
_little_endian = 1234
_big_endian = 4321
_pdp_endian = 3412
_byte_order = _LITTLE_ENDIAN
little_endian = _LITTLE_ENDIAN
big_endian = _BIG_ENDIAN
pdp_endian = _PDP_ENDIAN
byte_order = _BYTE_ORDER
__intel_compiler_with__free_bsd_endian = 1
__intel_compiler_with__free_bsd_endian = 1
def __word_swap_int_var(x):
return
def __word_swap_int_const(x):
return
def __word_swap_int(x):
return __word_swap_int_var(x)
def __byte_swap_int_var(x):
return
def __byte_swap_int_var(x):
return
def __byte_swap_int_const(x):
return
def __byte_swap_int(x):
return __byte_swap_int_var(x)
def __byte_swap_word_var(x):
return
def __byte_swap_word_const(x):
return
def __byte_swap_word(x):
return __byte_swap_word_var(x)
def __htonl(x):
return __bswap32(x)
def __htons(x):
return __bswap16(x)
def __ntohl(x):
return __bswap32(x)
def __ntohs(x):
return __bswap16(x)
ipproto_ip = 0
ipproto_icmp = 1
ipproto_tcp = 6
ipproto_udp = 17
def htonl(x):
return __htonl(x)
def htons(x):
return __htons(x)
def ntohl(x):
return __ntohl(x)
def ntohs(x):
return __ntohs(x)
ipproto_raw = 255
inet_addrstrlen = 16
ipproto_hopopts = 0
ipproto_igmp = 2
ipproto_ggp = 3
ipproto_ipv4 = 4
ipproto_ipip = IPPROTO_IPV4
ipproto_st = 7
ipproto_egp = 8
ipproto_pigp = 9
ipproto_rccmon = 10
ipproto_nvpii = 11
ipproto_pup = 12
ipproto_argus = 13
ipproto_emcon = 14
ipproto_xnet = 15
ipproto_chaos = 16
ipproto_mux = 18
ipproto_meas = 19
ipproto_hmp = 20
ipproto_prm = 21
ipproto_idp = 22
ipproto_trunk1 = 23
ipproto_trunk2 = 24
ipproto_leaf1 = 25
ipproto_leaf2 = 26
ipproto_rdp = 27
ipproto_irtp = 28
ipproto_tp = 29
ipproto_blt = 30
ipproto_nsp = 31
ipproto_inp = 32
ipproto_sep = 33
ipproto_3_pc = 34
ipproto_idpr = 35
ipproto_xtp = 36
ipproto_ddp = 37
ipproto_cmtp = 38
ipproto_tpxx = 39
ipproto_il = 40
ipproto_ipv6 = 41
ipproto_sdrp = 42
ipproto_routing = 43
ipproto_fragment = 44
ipproto_idrp = 45
ipproto_rsvp = 46
ipproto_gre = 47
ipproto_mhrp = 48
ipproto_bha = 49
ipproto_esp = 50
ipproto_ah = 51
ipproto_inlsp = 52
ipproto_swipe = 53
ipproto_nhrp = 54
ipproto_mobile = 55
ipproto_tlsp = 56
ipproto_skip = 57
ipproto_icmpv6 = 58
ipproto_none = 59
ipproto_dstopts = 60
ipproto_ahip = 61
ipproto_cftp = 62
ipproto_hello = 63
ipproto_satexpak = 64
ipproto_kryptolan = 65
ipproto_rvd = 66
ipproto_ippc = 67
ipproto_adfs = 68
ipproto_satmon = 69
ipproto_visa = 70
ipproto_ipcv = 71
ipproto_cpnx = 72
ipproto_cphb = 73
ipproto_wsn = 74
ipproto_pvp = 75
ipproto_brsatmon = 76
ipproto_nd = 77
ipproto_wbmon = 78
ipproto_wbexpak = 79
ipproto_eon = 80
ipproto_vmtp = 81
ipproto_svmtp = 82
ipproto_vines = 83
ipproto_ttp = 84
ipproto_igp = 85
ipproto_dgp = 86
ipproto_tcf = 87
ipproto_igrp = 88
ipproto_ospfigp = 89
ipproto_srpc = 90
ipproto_larp = 91
ipproto_mtp = 92
ipproto_ax25 = 93
ipproto_ipeip = 94
ipproto_micp = 95
ipproto_sccsp = 96
ipproto_etherip = 97
ipproto_encap = 98
ipproto_apes = 99
ipproto_gmtp = 100
ipproto_ipcomp = 108
ipproto_pim = 103
ipproto_pgm = 113
ipproto_pfsync = 240
ipproto_old_divert = 254
ipproto_max = 256
ipproto_done = 257
ipproto_divert = 258
ipport_reserved = 1024
ipport_hifirstauto = 49152
ipport_hilastauto = 65535
ipport_reservedstart = 600
ipport_max = 65535
def in_classa(i):
return u_int32_t(i) & -2147483648 == 0
in_classa_net = -16777216
in_classa_nshift = 24
in_classa_host = 16777215
in_classa_max = 128
def in_classb(i):
return u_int32_t(i) & -1073741824 == -2147483648
in_classb_net = -65536
in_classb_nshift = 16
in_classb_host = 65535
in_classb_max = 65536
def in_classc(i):
return u_int32_t(i) & -536870912 == -1073741824
in_classc_net = -256
in_classc_nshift = 8
in_classc_host = 255
def in_classd(i):
return u_int32_t(i) & -268435456 == -536870912
in_classd_net = -268435456
in_classd_nshift = 28
in_classd_host = 268435455
def in_multicast(i):
return in_classd(i)
def in_experimental(i):
return u_int32_t(i) & -268435456 == -268435456
def in_badclass(i):
return u_int32_t(i) & -268435456 == -268435456
inaddr_none = -1
in_loopbacknet = 127
ip_options = 1
ip_hdrincl = 2
ip_tos = 3
ip_ttl = 4
ip_recvopts = 5
ip_recvretopts = 6
ip_recvdstaddr = 7
ip_sendsrcaddr = IP_RECVDSTADDR
ip_retopts = 8
ip_multicast_if = 9
ip_multicast_ttl = 10
ip_multicast_loop = 11
ip_add_membership = 12
ip_drop_membership = 13
ip_multicast_vif = 14
ip_rsvp_on = 15
ip_rsvp_off = 16
ip_rsvp_vif_on = 17
ip_rsvp_vif_off = 18
ip_portrange = 19
ip_recvif = 20
ip_ipsec_policy = 21
ip_faith = 22
ip_onesbcast = 23
ip_fw_table_add = 40
ip_fw_table_del = 41
ip_fw_table_flush = 42
ip_fw_table_getsize = 43
ip_fw_table_list = 44
ip_fw_add = 50
ip_fw_del = 51
ip_fw_flush = 52
ip_fw_zero = 53
ip_fw_get = 54
ip_fw_resetlog = 55
ip_dummynet_configure = 60
ip_dummynet_del = 61
ip_dummynet_flush = 62
ip_dummynet_get = 64
ip_recvttl = 65
ip_default_multicast_ttl = 1
ip_default_multicast_loop = 1
ip_max_memberships = 20
ip_portrange_default = 0
ip_portrange_high = 1
ip_portrange_low = 2
ipproto_maxid = IPPROTO_AH + 1
ipctl_forwarding = 1
ipctl_sendredirects = 2
ipctl_defttl = 3
ipctl_defmtu = 4
ipctl_rtexpire = 5
ipctl_rtminexpire = 6
ipctl_rtmaxcache = 7
ipctl_sourceroute = 8
ipctl_directedbroadcast = 9
ipctl_intrqmaxlen = 10
ipctl_intrqdrops = 11
ipctl_stats = 12
ipctl_acceptsourceroute = 13
ipctl_fastforwarding = 14
ipctl_keepfaith = 15
ipctl_gif_ttl = 16
ipctl_maxid = 17
def in_nullhost(x):
return x.s_addr == INADDR_ANY
__kame_version = '20010528/FreeBSD'
ipv6_port_reserved = 1024
ipv6_port_anonmin = 49152
ipv6_port_anonmax = 65535
ipv6_port_reservedmin = 600
ipv6_port_reservedmax = IPV6PORT_RESERVED - 1
inet6_addrstrlen = 46
ipv6_addr_int32_one = 1
ipv6_addr_int32_two = 2
ipv6_addr_int32_mnl = -16711680
ipv6_addr_int32_mll = -16646144
ipv6_addr_int32_smp = 65535
ipv6_addr_int16_ull = 65152
ipv6_addr_int16_usl = 65216
ipv6_addr_int16_mll = 65282
ipv6_addr_int32_one = 16777216
ipv6_addr_int32_two = 33554432
ipv6_addr_int32_mnl = 511
ipv6_addr_int32_mll = 767
ipv6_addr_int32_smp = -65536
ipv6_addr_int16_ull = 33022
ipv6_addr_int16_usl = 49406
ipv6_addr_int16_mll = 767
def in6_is_addr_unspecified(a):
return
def in6_is_addr_loopback(a):
return
def in6_is_addr_v4_compat(a):
return
def in6_is_addr_v4_mapped(a):
return
ipv6_addr_scope_nodelocal = 1
ipv6_addr_scope_intfacelocal = 1
ipv6_addr_scope_linklocal = 2
ipv6_addr_scope_sitelocal = 5
ipv6_addr_scope_orglocal = 8
ipv6_addr_scope_global = 14
__ipv6_addr_scope_nodelocal = 1
__ipv6_addr_scope_intfacelocal = 1
__ipv6_addr_scope_linklocal = 2
__ipv6_addr_scope_sitelocal = 5
__ipv6_addr_scope_orglocal = 8
__ipv6_addr_scope_global = 14
def in6_is_addr_linklocal(a):
return
def in6_is_addr_sitelocal(a):
return
def in6_is_addr_mc_nodelocal(a):
return
def in6_is_addr_mc_intfacelocal(a):
return
def in6_is_addr_mc_linklocal(a):
return
def in6_is_addr_mc_sitelocal(a):
return
def in6_is_addr_mc_orglocal(a):
return
def in6_is_addr_mc_global(a):
return
def in6_is_addr_mc_nodelocal(a):
return
def in6_is_addr_mc_linklocal(a):
return
def in6_is_addr_mc_sitelocal(a):
return
def in6_is_addr_mc_orglocal(a):
return
def in6_is_addr_mc_global(a):
return
def in6_is_scope_linklocal(a):
return
def ifa6_is_deprecated(a):
return
def ifa6_is_invalid(a):
return
ipv6_options = 1
ipv6_recvopts = 5
ipv6_recvretopts = 6
ipv6_recvdstaddr = 7
ipv6_retopts = 8
ipv6_sockopt_reserved1 = 3
ipv6_unicast_hops = 4
ipv6_multicast_if = 9
ipv6_multicast_hops = 10
ipv6_multicast_loop = 11
ipv6_join_group = 12
ipv6_leave_group = 13
ipv6_portrange = 14
icmp6_filter = 18
ipv6_2292_pktinfo = 19
ipv6_2292_hoplimit = 20
ipv6_2292_nexthop = 21
ipv6_2292_hopopts = 22
ipv6_2292_dstopts = 23
ipv6_2292_rthdr = 24
ipv6_2292_pktoptions = 25
ipv6_checksum = 26
ipv6_v6_only = 27
ipv6_bindv6_only = IPV6_V6ONLY
ipv6_ipsec_policy = 28
ipv6_faith = 29
ipv6_fw_add = 30
ipv6_fw_del = 31
ipv6_fw_flush = 32
ipv6_fw_zero = 33
ipv6_fw_get = 34
ipv6_rthdrdstopts = 35
ipv6_recvpktinfo = 36
ipv6_recvhoplimit = 37
ipv6_recvrthdr = 38
ipv6_recvhopopts = 39
ipv6_recvdstopts = 40
ipv6_recvrthdrdstopts = 41
ipv6_use_min_mtu = 42
ipv6_recvpathmtu = 43
ipv6_pathmtu = 44
ipv6_reachconf = 45
ipv6_pktinfo = 46
ipv6_hoplimit = 47
ipv6_nexthop = 48
ipv6_hopopts = 49
ipv6_dstopts = 50
ipv6_rthdr = 51
ipv6_pktoptions = 52
ipv6_recvtclass = 57
ipv6_autoflowlabel = 59
ipv6_tclass = 61
ipv6_dontfrag = 62
ipv6_prefer_tempaddr = 63
ipv6_rthdr_loose = 0
ipv6_rthdr_strict = 1
ipv6_rthdr_type_0 = 0
ipv6_default_multicast_hops = 1
ipv6_default_multicast_loop = 1
ipv6_portrange_default = 0
ipv6_portrange_high = 1
ipv6_portrange_low = 2
ipv6_proto_maxid = IPPROTO_PIM + 1
ipv6_ctl_forwarding = 1
ipv6_ctl_sendredirects = 2
ipv6_ctl_defhlim = 3
ipv6_ctl_defmtu = 4
ipv6_ctl_forwsrcrt = 5
ipv6_ctl_stats = 6
ipv6_ctl_mrtstats = 7
ipv6_ctl_mrtproto = 8
ipv6_ctl_maxfragpackets = 9
ipv6_ctl_sourcecheck = 10
ipv6_ctl_sourcecheck_logint = 11
ipv6_ctl_accept_rtadv = 12
ipv6_ctl_keepfaith = 13
ipv6_ctl_log_interval = 14
ipv6_ctl_hdrnestlimit = 15
ipv6_ctl_dad_count = 16
ipv6_ctl_auto_flowlabel = 17
ipv6_ctl_defmcasthlim = 18
ipv6_ctl_gif_hlim = 19
ipv6_ctl_kame_version = 20
ipv6_ctl_use_deprecated = 21
ipv6_ctl_rr_prune = 22
ipv6_ctl_mapped_addr = 23
ipv6_ctl_v6_only = 24
ipv6_ctl_rtexpire = 25
ipv6_ctl_rtminexpire = 26
ipv6_ctl_rtmaxcache = 27
ipv6_ctl_usetempaddr = 32
ipv6_ctl_temppltime = 33
ipv6_ctl_tempvltime = 34
ipv6_ctl_auto_linklocal = 35
ipv6_ctl_rip6_stats = 36
ipv6_ctl_prefer_tempaddr = 37
ipv6_ctl_addrctlpolicy = 38
ipv6_ctl_maxfrags = 41
ipv6_ctl_maxid = 42 |
__title__ = 'splitwise'
__description__ = 'Splitwise Python SDK'
__version__ = '2.1.0'
__url__ = 'https://github.com/namaggarwal/splitwise'
__download_url__ = 'https://github.com/namaggarwal/splitwise/tarball/v'+__version__
__build__ = 0x022400
__author__ = 'Naman Aggarwal'
__author_email__ = 'aggarwal.nam@gmail.com'
__license__ = 'MIT'
__copyright__ = 'Copyright 2020 Naman Aggarwal'
| __title__ = 'splitwise'
__description__ = 'Splitwise Python SDK'
__version__ = '2.1.0'
__url__ = 'https://github.com/namaggarwal/splitwise'
__download_url__ = 'https://github.com/namaggarwal/splitwise/tarball/v' + __version__
__build__ = 140288
__author__ = 'Naman Aggarwal'
__author_email__ = 'aggarwal.nam@gmail.com'
__license__ = 'MIT'
__copyright__ = 'Copyright 2020 Naman Aggarwal' |
# chapter 11 pdb
print('This still works')
1/0
print('we should not reach this code.')
# python3 -m pdb cp11_pdb.py | print('This still works')
1 / 0
print('we should not reach this code.') |
class Solution:
def minWindow(self, s: str, t: str) -> str:
# 1. Use two pointers: start and end to represent a window.
# 2. Move end to find a valid window.
# 3. When a valid window is found, move start to find a smaller window.
if t == "":
return ""
countT, window = {}, {}
# count chars in t string
for char in t:
countT[char] = 1 + countT.get(char, 0)
# keep track of chars in window
have, need = 0, len(countT)
res, length = [-1, -1], float("inf")
left = 0
for right in range(len(s)):
c = s[right]
window[c] = 1 + window.get(c, 0)
if c in countT and window[c] == countT[c]:
have += 1
while have == need:
# update our result
curr_window = right - left + 1
if curr_window < length:
res = [left, right]
length = curr_window
# pop from left of our window
window[s[left]] -= 1
if s[left] in countT and window[s[left]] < countT[s[left]]:
have -= 1
left += 1
left, right = res
return s[left: right+1] if length != float("inf") else "" | class Solution:
def min_window(self, s: str, t: str) -> str:
if t == '':
return ''
(count_t, window) = ({}, {})
for char in t:
countT[char] = 1 + countT.get(char, 0)
(have, need) = (0, len(countT))
(res, length) = ([-1, -1], float('inf'))
left = 0
for right in range(len(s)):
c = s[right]
window[c] = 1 + window.get(c, 0)
if c in countT and window[c] == countT[c]:
have += 1
while have == need:
curr_window = right - left + 1
if curr_window < length:
res = [left, right]
length = curr_window
window[s[left]] -= 1
if s[left] in countT and window[s[left]] < countT[s[left]]:
have -= 1
left += 1
(left, right) = res
return s[left:right + 1] if length != float('inf') else '' |
_base_ = [
'../_base_/models/fcn_hr18.py', '../_base_/datasets/stanford.py',
'../_base_/default_runtime.py', '../_base_/schedules/schedule_40k.py'
]
norm_cfg = dict(type='BN', requires_grad=True)
model = dict(
backbone = dict(
norm_cfg = norm_cfg
),
decode_head=dict(
norm_cfg = norm_cfg,
num_classes=8
)
)
runner = dict(max_iters = 1000)
evaluation = dict(interval = 100)
checkpoint_config = dict(interval = 1000)
| _base_ = ['../_base_/models/fcn_hr18.py', '../_base_/datasets/stanford.py', '../_base_/default_runtime.py', '../_base_/schedules/schedule_40k.py']
norm_cfg = dict(type='BN', requires_grad=True)
model = dict(backbone=dict(norm_cfg=norm_cfg), decode_head=dict(norm_cfg=norm_cfg, num_classes=8))
runner = dict(max_iters=1000)
evaluation = dict(interval=100)
checkpoint_config = dict(interval=1000) |
n, a, b = map(int, input().split())
if abs(a - b) % 2 == 0:
print("Alice")
else:
print("Borys") | (n, a, b) = map(int, input().split())
if abs(a - b) % 2 == 0:
print('Alice')
else:
print('Borys') |
class Solution:
def robotSim(self, commands: List[int], obstacles: List[List[int]]) -> int:
p, s, m = [0, 0, 90], set(tuple(o) for o in obstacles), 0
for c in commands:
if c == -1: p[2] = (p[2] - 90) % 360
elif c == -2: p[2] = (p[2] + 90) % 360
else:
j, k = 1 if p[2] % 180 else 0, 1 if not p[2] or p[2] == 90 else -1
for i in range(1, c+1):
p[j] += k
if (p[0], p[1]) in s:
p[j] -= k
break
m = max(m, p[0]**2 + p[1]**2)
return m | class Solution:
def robot_sim(self, commands: List[int], obstacles: List[List[int]]) -> int:
(p, s, m) = ([0, 0, 90], set((tuple(o) for o in obstacles)), 0)
for c in commands:
if c == -1:
p[2] = (p[2] - 90) % 360
elif c == -2:
p[2] = (p[2] + 90) % 360
else:
(j, k) = (1 if p[2] % 180 else 0, 1 if not p[2] or p[2] == 90 else -1)
for i in range(1, c + 1):
p[j] += k
if (p[0], p[1]) in s:
p[j] -= k
break
m = max(m, p[0] ** 2 + p[1] ** 2)
return m |
{
"targets": [
{
"target_name": "waveshare5in83bv2",
"cflags!": [
"-fno-exceptions",
"-Wextra"
],
"cflags_cc!": [ "-fno-exceptions" ],
"sources": [
"./src/c/EPD_5in83b_V2_node.cc",
"./src/c/DEV_Config.c",
"./src/c/EPD_5in83b_V2.c",
"./src/c/dev_hardware_SPI.c",
"./src/c/RPI_sysfs_gpio.c"
],
"defines": [
"RPI",
"USE_DEV_LIB",
"NAPI_DISABLE_CPP_EXCEPTIONS"
],
"include_dirs": [
"<!@(node -p \"require('node-addon-api').include\")"
],
"libraries": [
"-lm"
]
}
]
}
| {'targets': [{'target_name': 'waveshare5in83bv2', 'cflags!': ['-fno-exceptions', '-Wextra'], 'cflags_cc!': ['-fno-exceptions'], 'sources': ['./src/c/EPD_5in83b_V2_node.cc', './src/c/DEV_Config.c', './src/c/EPD_5in83b_V2.c', './src/c/dev_hardware_SPI.c', './src/c/RPI_sysfs_gpio.c'], 'defines': ['RPI', 'USE_DEV_LIB', 'NAPI_DISABLE_CPP_EXCEPTIONS'], 'include_dirs': ['<!@(node -p "require(\'node-addon-api\').include")'], 'libraries': ['-lm']}]} |
# Open new tabs (middleclick/ctrl+click) in the background.
# Type: Bool
c.tabs.background = True
# Mouse button with which to close tabs.
# Type: String
# Valid values:
# - right: Close tabs on right-click.
# - middle: Close tabs on middle-click.
# - none: Don't close tabs using the mouse.
c.tabs.close_mouse_button = "right"
# How to behave when the close mouse button is pressed on the tab bar.
# Type: String
# Valid values:
# - new-tab: Open a new tab.
# - close-current: Close the current tab.
# - close-last: Close the last tab.
# - ignore: Don't do anything.
c.tabs.close_mouse_button_on_bar = "new-tab"
# Scaling factor for favicons in the tab bar. The tab size is unchanged,
# so big favicons also require extra `tabs.padding`.
# Type: Float
c.tabs.favicons.scale = 1.0
# When to show favicons in the tab bar.
# Type: String
# Valid values:
# - always: Always show favicons.
# - never: Always hide favicons.
# - pinned: Show favicons only on pinned tabs.
c.tabs.favicons.show = "pinned"
# How to behave when the last tab is closed.
# Type: String
# Valid values:
# - ignore: Don't do anything.
# - blank: Load a blank page.
# - startpage: Load the start page.
# - default-page: Load the default page.
# - close: Close the window.
c.tabs.last_close = "ignore"
# Switch between tabs using the mouse wheel.
# Type: Bool
c.tabs.mousewheel_switching = False
# Position of new tabs opened from another tab. See
# `tabs.new_position.stacking` for controlling stacking behavior.
# Type: NewTabPosition
# Valid values:
# - prev: Before the current tab.
# - next: After the current tab.
# - first: At the beginning.
# - last: At the end.
c.tabs.new_position.related = "next"
# Position of new tabs which are not opened from another tab. See
# `tabs.new_position.stacking` for controlling stacking behavior.
# Type: NewTabPosition
# Valid values:
# - prev: Before the current tab.
# - next: After the current tab.
# - first: At the beginning.
# - last: At the end.
c.tabs.new_position.unrelated = "last"
# Stack related tabs on top of each other when opened consecutively.
# Only applies for `next` and `prev` values of
# `tabs.new_position.related` and `tabs.new_position.unrelated`.
# Type: Bool
c.tabs.new_position.stacking = True
# Padding (in pixels) around text for tabs.
# Type: Padding
c.tabs.padding = {"bottom": 2, "left": 5, "right": 5, "top": 3}
# When switching tabs, what input mode is applied.
# Type: String
# Valid values:
# - persist: Retain the current mode.
# - restore: Restore previously saved mode.
# - normal: Always revert to normal mode.
c.tabs.mode_on_change = "normal"
# Position of the tab bar.
# Type: Position
# Valid values:
# - top
# - bottom
# - left
# - right
c.tabs.position = "bottom"
# Which tab to select when the focused tab is removed.
# Type: SelectOnRemove
# Valid values:
# - prev: Select the tab which came before the closed one (left in horizontal, above in vertical).
# - next: Select the tab which came after the closed one (right in horizontal, below in vertical).
# - last-used: Select the previously selected tab.
c.tabs.select_on_remove = "next"
# When to show the tab bar.
# Type: String
# Valid values:
# - always: Always show the tab bar.
# - never: Always hide the tab bar.
# - multiple: Hide the tab bar if only one tab is open.
# - switching: Show the tab bar when switching tabs.
c.tabs.show = "multiple"
# Duration (in milliseconds) to show the tab bar before hiding it when
# tabs.show is set to 'switching'.
# Type: Int
c.tabs.show_switching_delay = 800
# Open a new window for every tab.
# Type: Bool
c.tabs.tabs_are_windows = False
# Alignment of the text inside of tabs.
# Type: TextAlignment
# Valid values:
# - left
# - right
# - center
c.tabs.title.alignment = "center"
# Format to use for the tab title. The following placeholders are
# defined: * `{perc}`: Percentage as a string like `[10%]`. *
# `{perc_raw}`: Raw percentage, e.g. `10`. * `{current_title}`: Title of
# the current web page. * `{title_sep}`: The string ` - ` if a title is
# set, empty otherwise. * `{index}`: Index of this tab. * `{id}`:
# Internal tab ID of this tab. * `{scroll_pos}`: Page scroll position. *
# `{host}`: Host of the current web page. * `{backend}`: Either
# ''webkit'' or ''webengine'' * `{private}`: Indicates when private mode
# is enabled. * `{current_url}`: URL of the current web page. *
# `{protocol}`: Protocol (http/https/...) of the current web page. *
# `{audio}`: Indicator for audio/mute status.
# Type: FormatString
c.tabs.title.format = "{audio}{index}: {perc}{current_title}"
# Format to use for the tab title for pinned tabs. The same placeholders
# like for `tabs.title.format` are defined.
# Type: FormatString
c.tabs.title.format_pinned = "{index}"
# Width (in pixels or as percentage of the window) of the tab bar if
# it's vertical.
# Type: PercOrInt
c.tabs.width = "20%"
# Minimum width (in pixels) of tabs (-1 for the default minimum size
# behavior). This setting only applies when tabs are horizontal. This
# setting does not apply to pinned tabs, unless `tabs.pinned.shrink` is
# False.
# Type: Int
c.tabs.min_width = -1
# Maximum width (in pixels) of tabs (-1 for no maximum). This setting
# only applies when tabs are horizontal. This setting does not apply to
# pinned tabs, unless `tabs.pinned.shrink` is False. This setting may
# not apply properly if max_width is smaller than the minimum size of
# tab contents, or smaller than tabs.min_width.
# Type: Int
c.tabs.max_width = -1
# Width (in pixels) of the progress indicator (0 to disable).
# Type: Int
c.tabs.indicator.width = 3
# Padding (in pixels) for tab indicators.
# Type: Padding
c.tabs.indicator.padding = {"bottom": 2, "left": 0, "right": 4, "top": 2}
# Shrink pinned tabs down to their contents.
# Type: Bool
c.tabs.pinned.shrink = True
# Force pinned tabs to stay at fixed URL.
# Type: Bool
c.tabs.pinned.frozen = True
# Number of close tab actions to remember, per window (-1 for no
# maximum).
# Type: Int
c.tabs.undo_stack_size = 100
# Wrap when changing tabs.
# Type: Bool
c.tabs.wrap = True
| c.tabs.background = True
c.tabs.close_mouse_button = 'right'
c.tabs.close_mouse_button_on_bar = 'new-tab'
c.tabs.favicons.scale = 1.0
c.tabs.favicons.show = 'pinned'
c.tabs.last_close = 'ignore'
c.tabs.mousewheel_switching = False
c.tabs.new_position.related = 'next'
c.tabs.new_position.unrelated = 'last'
c.tabs.new_position.stacking = True
c.tabs.padding = {'bottom': 2, 'left': 5, 'right': 5, 'top': 3}
c.tabs.mode_on_change = 'normal'
c.tabs.position = 'bottom'
c.tabs.select_on_remove = 'next'
c.tabs.show = 'multiple'
c.tabs.show_switching_delay = 800
c.tabs.tabs_are_windows = False
c.tabs.title.alignment = 'center'
c.tabs.title.format = '{audio}{index}: {perc}{current_title}'
c.tabs.title.format_pinned = '{index}'
c.tabs.width = '20%'
c.tabs.min_width = -1
c.tabs.max_width = -1
c.tabs.indicator.width = 3
c.tabs.indicator.padding = {'bottom': 2, 'left': 0, 'right': 4, 'top': 2}
c.tabs.pinned.shrink = True
c.tabs.pinned.frozen = True
c.tabs.undo_stack_size = 100
c.tabs.wrap = True |
# Question Validation
def hNvalidation(sentence):
flag = 1
Length = len(sentence)
if (Length > 4):
for i in range(Length):
if (i+4 < Length):
if (sentence[i]==' ' and sentence[i+1]=='h' and sentence[i+2]==' ' and sentence[i+3]=='N' and sentence[i+4]==' '):
flag = 0
return flag
| def h_nvalidation(sentence):
flag = 1
length = len(sentence)
if Length > 4:
for i in range(Length):
if i + 4 < Length:
if sentence[i] == ' ' and sentence[i + 1] == 'h' and (sentence[i + 2] == ' ') and (sentence[i + 3] == 'N') and (sentence[i + 4] == ' '):
flag = 0
return flag |
__all__ = [
'admin',
'backends',
'fixtures'
'migrations',
'models',
'schema',
'signals'
'tests',
'views',
'apps'
]
default_app_config = 'app.apps.CruxAppConfig'
| __all__ = ['admin', 'backends', 'fixturesmigrations', 'models', 'schema', 'signalstests', 'views', 'apps']
default_app_config = 'app.apps.CruxAppConfig' |
class Nodo:
'''
class nodo
'''
| class Nodo:
"""
class nodo
""" |
small_bottles = float(input("Inserisci il numero di bottiglie piccole"))
big_bottles = float(input("Inserisci il numero di bottiglie grandi"))
valore_totale=(small_bottles*0.1)+(big_bottles*0.25)
print("hai guadagnato:",float(valore_totale)) | small_bottles = float(input('Inserisci il numero di bottiglie piccole'))
big_bottles = float(input('Inserisci il numero di bottiglie grandi'))
valore_totale = small_bottles * 0.1 + big_bottles * 0.25
print('hai guadagnato:', float(valore_totale)) |
n = int(input())
elements = set()
for _ in range(n):
data = input()
if " " in data:
data = data.split(" ")
for el in data:
elements.add(el)
else:
elements.add(data)
for el in elements:
print(el) | n = int(input())
elements = set()
for _ in range(n):
data = input()
if ' ' in data:
data = data.split(' ')
for el in data:
elements.add(el)
else:
elements.add(data)
for el in elements:
print(el) |
# OpenWeatherMap API Key
weather_api_key = "TYPE YOUR KEY HERE!"
# Google API Key
g_key = "TYPE YOUR KEY HERE!"
| weather_api_key = 'TYPE YOUR KEY HERE!'
g_key = 'TYPE YOUR KEY HERE!' |
#!/usr/bin/env python3
# package version
__version__ = '3.0.0-beta'
| __version__ = '3.0.0-beta' |
# Write a program that reads four integer numbers.
# It should add the first to the second number, integer divide the sum by the third number,
# and multiply the result by the fourth number. Print the final result.
i1 = int(input())
i2 = int(input())
i3 = int(input())
i4 = int(input())
result = i1 + i2
result = result // i3
result *= i4
print (result) | i1 = int(input())
i2 = int(input())
i3 = int(input())
i4 = int(input())
result = i1 + i2
result = result // i3
result *= i4
print(result) |
file = {'a':'china',
'b':'us',
'c':'cuba'}
for name, country in file.items():
print(str(name.title()) + ' runs through ' + str(country.title()) + '.')
print(str(name.title()))
print(str(country.title()) + '\n') | file = {'a': 'china', 'b': 'us', 'c': 'cuba'}
for (name, country) in file.items():
print(str(name.title()) + ' runs through ' + str(country.title()) + '.')
print(str(name.title()))
print(str(country.title()) + '\n') |
'''
Author:
Charles
Function:
set options.
'''
# for yolo1
yolo1_options = {
'info': 'yolo1_options',
'max_object': 50,
'backupdir': './backup',
'trainSet': '',
'testSet': '',
'trainlabpth': None,
'testlabpth': None,
'clsnamesfile': './names/coco.names',
'gpus': '0, 1',
'ngpus': 2,
'use_cuda': True,
'num_workers': 4,
'is_multiscale': False,
'by_stride': False,
'header_len': 4,
'weightfile': './weights/yolov1.weights',
'cfgfile': './cfg/yolov1.cfg',
'logsavefile': 'train.log',
'save_interval': 10,
'conf_thresh': 0.25,
'nms_thresh': 0.4,
'iou_thresh': 0.5,
'jitter': 0.2,
'mode': 'test'
}
# for yolo2
yolo2_options = {
'info': 'yolo2_options',
'max_object': 50,
'backupdir': './backup',
'trainSet': '',
'testSet': '',
'trainlabpth': None,
'testlabpth': None,
'clsnamesfile': './names/coco.names',
'gpus': '0, 1',
'ngpus': 2,
'use_cuda': True,
'num_workers': 4,
'is_multiscale': True,
'by_stride': False,
'header_len': 4,
'weightfile': './weights/yolov2.weights',
'cfgfile': './cfg/yolov2.cfg',
'logsavefile': 'train.log',
'save_interval': 10,
'conf_thresh': 0.25,
'nms_thresh': 0.4,
'iou_thresh': 0.5,
'jitter': 0.3,
'mode': 'test'
}
# for yolo3
yolo3_options = {
'info': 'yolo3_options',
'max_object': 50,
'backupdir': './backup',
'trainSet': '',
'testSet': '',
'trainlabpth': None,
'testlabpth': None,
'clsnamesfile': './names/coco.names',
'gpus': '1',
'ngpus': 1,
'use_cuda': True,
'num_workers': 4,
'is_multiscale': True,
'by_stride': True,
'header_len': 5,
'weightfile': './weights/yolov3.weights',
'cfgfile': './cfg/yolov3.cfg',
'logsavefile': 'train.log',
'save_interval': 10,
'conf_thresh': 0.25,
'nms_thresh': 0.4,
'iou_thresh': 0.5,
'jitter': 0.3,
'mode': 'test'
} | """
Author:
Charles
Function:
set options.
"""
yolo1_options = {'info': 'yolo1_options', 'max_object': 50, 'backupdir': './backup', 'trainSet': '', 'testSet': '', 'trainlabpth': None, 'testlabpth': None, 'clsnamesfile': './names/coco.names', 'gpus': '0, 1', 'ngpus': 2, 'use_cuda': True, 'num_workers': 4, 'is_multiscale': False, 'by_stride': False, 'header_len': 4, 'weightfile': './weights/yolov1.weights', 'cfgfile': './cfg/yolov1.cfg', 'logsavefile': 'train.log', 'save_interval': 10, 'conf_thresh': 0.25, 'nms_thresh': 0.4, 'iou_thresh': 0.5, 'jitter': 0.2, 'mode': 'test'}
yolo2_options = {'info': 'yolo2_options', 'max_object': 50, 'backupdir': './backup', 'trainSet': '', 'testSet': '', 'trainlabpth': None, 'testlabpth': None, 'clsnamesfile': './names/coco.names', 'gpus': '0, 1', 'ngpus': 2, 'use_cuda': True, 'num_workers': 4, 'is_multiscale': True, 'by_stride': False, 'header_len': 4, 'weightfile': './weights/yolov2.weights', 'cfgfile': './cfg/yolov2.cfg', 'logsavefile': 'train.log', 'save_interval': 10, 'conf_thresh': 0.25, 'nms_thresh': 0.4, 'iou_thresh': 0.5, 'jitter': 0.3, 'mode': 'test'}
yolo3_options = {'info': 'yolo3_options', 'max_object': 50, 'backupdir': './backup', 'trainSet': '', 'testSet': '', 'trainlabpth': None, 'testlabpth': None, 'clsnamesfile': './names/coco.names', 'gpus': '1', 'ngpus': 1, 'use_cuda': True, 'num_workers': 4, 'is_multiscale': True, 'by_stride': True, 'header_len': 5, 'weightfile': './weights/yolov3.weights', 'cfgfile': './cfg/yolov3.cfg', 'logsavefile': 'train.log', 'save_interval': 10, 'conf_thresh': 0.25, 'nms_thresh': 0.4, 'iou_thresh': 0.5, 'jitter': 0.3, 'mode': 'test'} |
# Cube coordinates: https://www.redblobgames.com/grids/hexagons/
d = open("input.txt").read().splitlines()
g = {}
for l in d:
i = 0
x, y, z = (0, 0, 0)
while i < len(l):
if l[i:].startswith('sw'):
x, y, z = x - 1, y, z + 1
i += 2
elif l[i:].startswith('se'):
x, y, z = x, y - 1, z + 1
i += 2
elif l[i:].startswith('nw'):
x, y, z = x, y + 1, z - 1
i += 2
elif l[i:].startswith('ne'):
x, y, z = x + 1, y, z - 1
i += 2
elif l[i] == 'w':
x, y, z = x - 1, y + 1, z
i += 1
elif l[i] == 'e':
x, y, z = x + 1, y - 1, z
i += 1
g[(x, y, z)] = not g.get((x, y, z), False)
print(sum(g.values()))
dirs = ((-1, 0, 1), (0, -1, 1), (0, 1, -1), (1, 0, -1), (-1, 1, 0), (1, -1, 0))
for i in range(100):
g_new = g.copy()
pos = set(g.keys())
for k in g:
for dx, dy, dz in dirs:
pos.add((k[0] + dx, k[1] + dy, k[2] + dz))
for k in pos:
n = 0
for dx, dy, dz in dirs:
n += g.get((k[0] + dx, k[1] + dy, k[2] + dz), False)
if n == 2:
g_new[k] = True
elif (n == 0 or n > 2) and g.get(k, False):
g_new[k] = False
g = g_new
print(sum(g.values()))
| d = open('input.txt').read().splitlines()
g = {}
for l in d:
i = 0
(x, y, z) = (0, 0, 0)
while i < len(l):
if l[i:].startswith('sw'):
(x, y, z) = (x - 1, y, z + 1)
i += 2
elif l[i:].startswith('se'):
(x, y, z) = (x, y - 1, z + 1)
i += 2
elif l[i:].startswith('nw'):
(x, y, z) = (x, y + 1, z - 1)
i += 2
elif l[i:].startswith('ne'):
(x, y, z) = (x + 1, y, z - 1)
i += 2
elif l[i] == 'w':
(x, y, z) = (x - 1, y + 1, z)
i += 1
elif l[i] == 'e':
(x, y, z) = (x + 1, y - 1, z)
i += 1
g[x, y, z] = not g.get((x, y, z), False)
print(sum(g.values()))
dirs = ((-1, 0, 1), (0, -1, 1), (0, 1, -1), (1, 0, -1), (-1, 1, 0), (1, -1, 0))
for i in range(100):
g_new = g.copy()
pos = set(g.keys())
for k in g:
for (dx, dy, dz) in dirs:
pos.add((k[0] + dx, k[1] + dy, k[2] + dz))
for k in pos:
n = 0
for (dx, dy, dz) in dirs:
n += g.get((k[0] + dx, k[1] + dy, k[2] + dz), False)
if n == 2:
g_new[k] = True
elif (n == 0 or n > 2) and g.get(k, False):
g_new[k] = False
g = g_new
print(sum(g.values())) |
def cards_for_friends(w, h, n):
w2 = 1
while w % 2 == 0:
w2 *= 2
w = w / 2
h2 = 1
while h % 2 == 0:
h2 *= 2
h = h / 2
return w2 * h2 >= n
if __name__ == "__main__":
num_test = int(input())
for i in range(num_test):
w, h, n = [int(i) for i in input().split()]
if cards_for_friends(w, h, n):
print("YES")
else:
print("NO")
| def cards_for_friends(w, h, n):
w2 = 1
while w % 2 == 0:
w2 *= 2
w = w / 2
h2 = 1
while h % 2 == 0:
h2 *= 2
h = h / 2
return w2 * h2 >= n
if __name__ == '__main__':
num_test = int(input())
for i in range(num_test):
(w, h, n) = [int(i) for i in input().split()]
if cards_for_friends(w, h, n):
print('YES')
else:
print('NO') |
class FpSegmentator:
def __init__(self, bs = 16, th = 160):
self.blockSize = bs
self.threshHold = th
def segment(self, fpImg):
segmentedImg = fpImg
maskImg = fpImg
#Perform edge detection using Canny technique
blurImg = cv2.GaussianBlur(fpImg, (7,7), 0)
edgeImg = cv2.Canny(blurImg, 20, 70)
rows, cols, *ch = maskImg.shape
total = 0
sd = 0
size = self.blockSize ** 2
#Compute statistical features of each block in input fingerprint image
#And check if SD is less than the threshold value
for row in range(0,rows, self.blockSize):
for col in range(0,cols, self.blockSize):
try:
#Calculate total pixels here
for r in range(row,row + self.blockSize):
for c in range(col,col + self.blockSize):
total += edgeImg[r,c]
#Calculate total sd of the edgeImg here
for r in range(row,row + self.blockSize):
for c in range(col,col + self.blockSize):
sd += (edgeImg[r,c] - (total // size))**2
total_sd = math.sqrt(sd // self.blockSize)
#Assign white color to the region with lower threshold
if total_sd < self.threshHold:
for r in range(row,row + self.blockSize):
for c in range(col,col + self.blockSize):
segmentedImg[r,c] = 255
#Reset the sd and total pix for each block
total = 0
sd = 0
except IndexError as ie:
pass
return segmentedImg | class Fpsegmentator:
def __init__(self, bs=16, th=160):
self.blockSize = bs
self.threshHold = th
def segment(self, fpImg):
segmented_img = fpImg
mask_img = fpImg
blur_img = cv2.GaussianBlur(fpImg, (7, 7), 0)
edge_img = cv2.Canny(blurImg, 20, 70)
(rows, cols, *ch) = maskImg.shape
total = 0
sd = 0
size = self.blockSize ** 2
for row in range(0, rows, self.blockSize):
for col in range(0, cols, self.blockSize):
try:
for r in range(row, row + self.blockSize):
for c in range(col, col + self.blockSize):
total += edgeImg[r, c]
for r in range(row, row + self.blockSize):
for c in range(col, col + self.blockSize):
sd += (edgeImg[r, c] - total // size) ** 2
total_sd = math.sqrt(sd // self.blockSize)
if total_sd < self.threshHold:
for r in range(row, row + self.blockSize):
for c in range(col, col + self.blockSize):
segmentedImg[r, c] = 255
total = 0
sd = 0
except IndexError as ie:
pass
return segmentedImg |
s = input()
s = s.lower()
panagram = True
lst = []
for i in range(0,26):
lst.append(False)
for char in s:
if not char == " ":
lst[ord(char)-ord('a')]=True
for ch in lst:
if ch == False:
panagram = False
break
if(panagram==False):
print("Panagram Doesn't Exist")
else:
print("Panagram Exists")
| s = input()
s = s.lower()
panagram = True
lst = []
for i in range(0, 26):
lst.append(False)
for char in s:
if not char == ' ':
lst[ord(char) - ord('a')] = True
for ch in lst:
if ch == False:
panagram = False
break
if panagram == False:
print("Panagram Doesn't Exist")
else:
print('Panagram Exists') |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.