CRC-1155
Overview
Max Total Supply
0 MTA
Holders
197
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
MagicTrickAccessories
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-08-02 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; } /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } } /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } } contract Oracle { address admin; uint public rand; constructor(uint _rand) { admin = msg.sender; rand = _rand; } function createrandomness(uint _rand) external { require(msg.sender == admin); rand = _rand; } } contract MagicTrickAccessories is ERC1155, AccessControl, ERC1155Burnable, ReentrancyGuard { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); using SafeMath for uint256; using SafeERC20 for IERC20; Oracle private oracle; string public name = "MagicTrickAccessories"; string public symbol = "MTA"; address payable private Wallet_Burn = payable(0x000000000000000000000000000000000000dEaD); uint public CombineshardsMultiplier = 50; uint256 public PoolFee = 50; uint256 public totalnfts = 50; uint256 public totaltomint = 10000; uint256[] public minted = [0, 0, 0, 0, 0]; uint256 public MINT_PRICE = 1000000*1e18; IERC20 public Cropperfield; uint256 nonce; constructor(address CROpperfield, address oracleaddress) ERC1155("https://gateway.pinata.cloud/ipfs/QmYmBh6t3Sxx4ksSeNTekocYzccKVgr1Dd6mq84DMzprGy/{id}.json") { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(MINTER_ROLE, msg.sender); Cropperfield = IERC20(CROpperfield); oracle = Oracle(oracleaddress); _mint(msg.sender, 2, 25, ""); _mint(msg.sender, 3, 15, ""); _mint(msg.sender, 4, 10, ""); } function supportsInterface(bytes4 interfaceId) public view override(ERC1155, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } event _Combineresult ( address indexed reciever, uint256 indexed tokenId ); struct Staker { uint256 initialtimestamp; uint256 timesincelastupdate; uint256 points; uint256 staked; uint256 timeoflastMSmint; uint256 dailyamountofMSminted; } mapping (address => Staker) public Stakers; function setURI(string memory newuri) public onlyRole(DEFAULT_ADMIN_ROLE) { _setURI(newuri); } function set_Minter_Role(address account) public onlyRole(DEFAULT_ADMIN_ROLE) { _grantRole(MINTER_ROLE, account); } function mintMagicShards(address account, uint256 amount, bytes memory data) public onlyRole(MINTER_ROLE) { require(amount <= 200, "Daily Limit Exceeded"); Staker storage staker = Stakers[account]; uint256 timesincelastMSmint = block.timestamp.sub(staker.timeoflastMSmint); if (timesincelastMSmint> 1 days){ staker.dailyamountofMSminted = 0; } require(staker.dailyamountofMSminted.add(amount) <= 200, "Daily Limit Exceeded"); staker.dailyamountofMSminted = staker.dailyamountofMSminted.add(amount); staker.timeoflastMSmint = block.timestamp; _mint(account, 5, amount, data); } function OpenMagicBox() public { require(Cropperfield.allowance(msg.sender, address(this)) >= MINT_PRICE, "Not enough CROpperfield tokens"); require(totalnfts < totaltomint, "All Minted"); uint256 Poolamount = MINT_PRICE.mul(PoolFee).div(100); uint256 Burnamount = MINT_PRICE - Poolamount; Cropperfield.safeTransferFrom(msg.sender,Wallet_Burn, Burnamount); Cropperfield.safeTransferFrom(msg.sender,address(Cropperfield), Poolamount); uint256 index = uint256 (keccak256(abi.encodePacked(nonce, oracle.rand(), block.timestamp, block.difficulty, msg.sender)))%100; nonce ++; totalnfts ++; if (index >=0 && index <=53) { _mint(msg.sender, 0, 1, ""); minted[0] ++; } if (index >=54 && index <=79) { _mint(msg.sender, 1, 1, ""); minted[1] ++; } if (index >=80 && index <=93) { _mint(msg.sender, 2, 1, ""); minted[2] ++; } if (index >=94 && index <=98) { _mint(msg.sender, 3, 1, ""); minted[3] ++; } if (index == 99) { _mint(msg.sender, 4, 1, ""); minted[4] ++; } } function changeavailableNFTs(uint256 amount) public onlyRole(DEFAULT_ADMIN_ROLE) { totaltomint = amount; } function setMintPrice(uint256 amount) public onlyRole(DEFAULT_ADMIN_ROLE) { MINT_PRICE = amount; } function setCombineshardsMultiplier(uint amount) public onlyRole(DEFAULT_ADMIN_ROLE) { CombineshardsMultiplier = amount; } function changeMintToken(address newtoken) public onlyRole(DEFAULT_ADMIN_ROLE) { Cropperfield = IERC20(newtoken); } function changePoolFee(uint256 newPoolFee) public onlyRole(DEFAULT_ADMIN_ROLE) { PoolFee = newPoolFee; } function combine(uint256 id,uint packOfMagicShards) public { require (packOfMagicShards < 5); require (id<4, "Can't use Spheres"); require (balanceOf(msg.sender,id) >= 5, "not enough NFTs"); uint256 rand = uint256 (keccak256(abi.encodePacked(nonce, oracle.rand(), block.timestamp, block.difficulty, msg.sender)))%100; uint amountOfMagicShards = packOfMagicShards.mul(CombineshardsMultiplier); uint boost = (packOfMagicShards.mul(20)).add(20); uint chanceOf2tiersup = boost; if (id<3){ if (rand >= chanceOf2tiersup) { _burn(msg.sender,id,5); _burn(msg.sender,5,amountOfMagicShards); _mint(msg.sender,id+1,1,""); emit _Combineresult( msg.sender, id+1 ); } if (rand < chanceOf2tiersup) { _burn(msg.sender,id,5); _burn(msg.sender,5,amountOfMagicShards); _mint(msg.sender,id+2,1,""); emit _Combineresult( msg.sender, id+2 ); } } if (id==3) { _burn(msg.sender,id,5); _mint(msg.sender,id+1,1,""); emit _Combineresult( msg.sender, id+1 ); } } uint256 PointsPerMagicShard = 1500000000; function Change_PointsPerMagicShard (uint256 new_PointsPerMagicShard) external onlyRole(DEFAULT_ADMIN_ROLE) { PointsPerMagicShard = new_PointsPerMagicShard; } function deposit (uint256 amount) public nonReentrant{ require(Cropperfield.balanceOf(msg.sender)>=amount); claim_magicshards(); Staker storage staker = Stakers[msg.sender]; staker.initialtimestamp = block.timestamp; staker.staked = staker.staked.add(amount); Cropperfield.safeTransferFrom(msg.sender,address(this),amount); } function withdraw (uint256 amount) public nonReentrant{ Staker storage staker = Stakers[msg.sender]; require (staker.staked>=amount); claim_magicshards(); uint256 stakedtime = block.timestamp - staker.initialtimestamp; uint256 penalty = 0; if (stakedtime < 7 days) { penalty = amount.mul(5).div(100); } uint256 amounttowithdraw = amount.sub(penalty); staker.staked = staker.staked - amount; Cropperfield.safeTransfer(msg.sender, amounttowithdraw); Cropperfield.safeTransfer(address(Cropperfield), penalty); } function claim_magicshards() public { updatebalance(); Staker storage staker = Stakers[msg.sender]; if (staker.points < PointsPerMagicShard){ return; } uint magicshards = staker.points.div(PointsPerMagicShard); staker.points = staker.points.mod(PointsPerMagicShard); _mint(msg.sender,5,magicshards,""); } function updatebalance () private { Staker storage staker = Stakers[msg.sender]; uint256 pointsPerSec = staker.staked.div(1e18).div(1000); uint256 reward = (block.timestamp.sub(staker.timesincelastupdate)).mul(pointsPerSec); staker.points = staker.points + reward; staker.timesincelastupdate = block.timestamp; } function checkpendingpoints () public view returns(uint256) { Staker storage staker = Stakers[msg.sender]; uint256 pointsPerSec = staker.staked.div(1e18).div(1000); uint256 pending_reward = staker.points + (block.timestamp.sub(staker.timesincelastupdate)).mul(pointsPerSec); return pending_reward; } function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4) { return bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)")); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"CROpperfield","type":"address"},{"internalType":"address","name":"oracleaddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"reciever","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"_Combineresult","type":"event"},{"inputs":[{"internalType":"uint256","name":"new_PointsPerMagicShard","type":"uint256"}],"name":"Change_PointsPerMagicShard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"CombineshardsMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Cropperfield","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OpenMagicBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"PoolFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Stakers","outputs":[{"internalType":"uint256","name":"initialtimestamp","type":"uint256"},{"internalType":"uint256","name":"timesincelastupdate","type":"uint256"},{"internalType":"uint256","name":"points","type":"uint256"},{"internalType":"uint256","name":"staked","type":"uint256"},{"internalType":"uint256","name":"timeoflastMSmint","type":"uint256"},{"internalType":"uint256","name":"dailyamountofMSminted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newtoken","type":"address"}],"name":"changeMintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPoolFee","type":"uint256"}],"name":"changePoolFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeavailableNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkpendingpoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim_magicshards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"packOfMagicShards","type":"uint256"}],"name":"combine","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintMagicShards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setCombineshardsMultiplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"set_Minter_Role","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalnfts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totaltomint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052601560808190527f4d61676963547269636b4163636573736f72696573000000000000000000000060a09081526200004091600691906200064e565b50604080518082019091526003808252624d544160e81b60209092019182526200006d916007916200064e565b50600880546001600160a01b03191661dead17905560326009819055600a819055600b55612710600c556040805160a081018252600080825260208201819052918101829052606081018290526080810191909152620000d290600d906005620006dd565b5069d3c21bcecceda1000000600e556359682f00601255348015620000f657600080fd5b506040516200416438038062004164833981016040819052620001199162000754565b6040518060800160405280605a81526020016200410a605a91396200013e8162000221565b506001600455620001516000336200023a565b6200017d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200023a565b600f80546001600160a01b038085166001600160a01b0319928316179092556005805492841692909116919091179055604080516020810190915260008152620001cf903390600290601990620002de565b620001f4336003600f60405180602001604052806000815250620002de60201b60201c565b62000219336004600a60405180602001604052806000815250620002de60201b60201c565b5050620009ab565b8051620002369060029060208401906200064e565b5050565b60008281526003602090815260408083206001600160a01b038516845290915290205460ff16620002365760008281526003602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200029a3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6001600160a01b038416620003445760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084015b60405180910390fd5b336000620003528562000400565b90506000620003618562000400565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906200039590849062000866565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4620003f78360008989898962000462565b50505050505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106200044957634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b505050505050565b62000481846001600160a01b03166200063f60201b620018d91760201c565b156200045a5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190620004bd90899089908890889088906004016200080a565b602060405180830381600087803b158015620004d857600080fd5b505af19250505080156200050b575060408051601f3d908101601f1916820190925262000508918101906200078b565b60015b620005cc576200051a62000903565b806308c379a014156200055b5750620005326200091c565b806200053f57506200055d565b8060405162461bcd60e51b81526004016200033b919062000851565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016200033b565b6001600160e01b0319811663f23a6e6160e01b14620003f75760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b60648201526084016200033b565b6001600160a01b03163b151590565b8280546200065c906200088b565b90600052602060002090601f016020900481019282620006805760008555620006cb565b82601f106200069b57805160ff1916838001178555620006cb565b82800160010185558215620006cb579182015b82811115620006cb578251825591602001919060010190620006ae565b50620006d992915062000720565b5090565b828054828255906000526020600020908101928215620006cb579160200282015b82811115620006cb578251829060ff16905591602001919060010190620006fe565b5b80821115620006d9576000815560010162000721565b80516001600160a01b03811681146200074f57600080fd5b919050565b6000806040838503121562000767578182fd5b620007728362000737565b9150620007826020840162000737565b90509250929050565b6000602082840312156200079d578081fd5b81516001600160e01b031981168114620007b5578182fd5b9392505050565b60008151808452815b81811015620007e357602081850181015186830182015201620007c5565b81811115620007f55782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906200084690830184620007bc565b979650505050505050565b602081526000620007b56020830184620007bc565b600082198211156200088657634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620008a057607f821691505b60208210811415620008c257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b0381118282101715620008fc57634e487b7160e01b600052604160045260246000fd5b6040525050565b600060033d11156200091957600481823e5160e01c5b90565b600060443d10156200092b5790565b6040516003193d81016004833e81513d6001600160401b0380831160248401831017156200095b57505050505090565b8285019150815181811115620009745750505050505090565b843d87010160208285010111156200098f5750505050505090565b620009a060208286010187620008c8565b509095945050505050565b61374f80620009bb6000396000f3fe608060405234801561001057600080fd5b50600436106102685760003560e01c80638a50fecb11610151578063d5391393116100c3578063f23a6e6111610087578063f23a6e61146105a1578063f242432a146105f3578063f4a0a52814610606578063f5298aca14610619578063f75bbeec1461062c578063ffc3fddd1461065757600080fd5b8063d5391393146104b2578063d547741f146104d9578063e1c5af5b146104ec578063e985e9c5146104f5578063ede85eb71461053157600080fd5b8063a899406711610115578063a89940671461045e578063b6b55f2514610471578063b7dd214f14610484578063bcfedd701461048d578063c002d23d14610496578063ccf0b4a61461049f57600080fd5b80638a50fecb1461041557806391d148541461042857806395d89b411461043b578063a217fddf14610443578063a22cb4651461044b57600080fd5b806334450615116101ea578063646745b0116101ae578063646745b0146103ae5780636b20c454146103b6578063784bdab4146103c95780637dc0bf3f146103dc5780638206dede146103ef5780638a17f47e1461040257600080fd5b8063344506151461036257806336568abe1461036a57806346e8bbe51461037d5780634e1273f4146103865780635a1c3cbe146103a657600080fd5b8063248a9ca311610231578063248a9ca3146102f35780632e1a7d4d146103165780632eb2c2d6146103295780632f2ff15d1461033c57806331091ba31461034f57600080fd5b8062fdd58e1461026d57806301ffc9a71461029357806302fe5305146102b657806306fdde03146102cb5780630e89341c146102e0575b600080fd5b61028061027b366004612e30565b61066a565b6040519081526020015b60405180910390f35b6102a66102a1366004612ff5565b610700565b604051901515815260200161028a565b6102c96102c436600461302d565b610711565b005b6102d3610729565b60405161028a91906132b2565b6102d36102ee366004612fbb565b6107b7565b610280610301366004612fbb565b60009081526003602052604090206001015490565b6102c9610324366004612fbb565b61084b565b6102c9610337366004612be3565b61095f565b6102c961034a366004612fd3565b6109f6565b6102c961035d366004612e59565b610a20565b6102c9610b5c565b6102c9610378366004612fd3565b610bde565b61028060095481565b610399610394366004612ed5565b610c58565b60405161028a9190613271565b6102c9610db9565b610280611248565b6102c96103c4366004612d8a565b6112b4565b6102c96103d7366004612b97565b6112f7565b6102806103ea366004612fbb565b611325565b6102c96103fd366004612fbb565b611346565b6102c9610410366004612b97565b611357565b6102c961042336600461308a565b61138c565b6102a6610436366004612fd3565b611672565b6102d361169d565b610280600081565b6102c9610459366004612dfa565b6116aa565b6102c961046c366004612fbb565b6116b5565b6102c961047f366004612fbb565b6116c6565b610280600c5481565b610280600b5481565b610280600e5481565b6102c96104ad366004612fbb565b6117f9565b6102807f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102c96104e7366004612fd3565b61180a565b610280600a5481565b6102a6610503366004612bb1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61057461053f366004612b97565b601160205260009081526040902080546001820154600283015460038401546004850154600590950154939492939192909186565b604080519687526020870195909552938501929092526060840152608083015260a082015260c00161028a565b6105da6105af366004612c88565b7ff23a6e612e1ff4830e658fe43f4e3cb4a5f8170bd5d9e69fb5d7a7fa9e4fdf979695505050505050565b6040516001600160e01b0319909116815260200161028a565b6102c9610601366004612d28565b61182f565b6102c9610614366004612fbb565b611874565b6102c9610627366004612ea3565b611885565b600f5461063f906001600160a01b031681565b6040516001600160a01b03909116815260200161028a565b6102c9610665366004612fbb565b6118c8565b60006001600160a01b0383166106da5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b600061070b826118e8565b92915050565b600061071c8161190d565b6107258261191a565b5050565b600680546107369061357c565b80601f01602080910402602001604051908101604052809291908181526020018280546107629061357c565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b505050505081565b6060600280546107c69061357c565b80601f01602080910402602001604051908101604052809291908181526020018280546107f29061357c565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b50505050509050919050565b6002600454141561089e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106d1565b600260045533600090815260116020526040902060038101548211156108c357600080fd5b6108cb610b5c565b80546000906108da9042613522565b9050600062093a80821015610902576108ff60646108f986600561192d565b90611940565b90505b600061090e858361194c565b90508484600301546109209190613522565b6003850155600f5461093c906001600160a01b03163383611958565b600f54610953906001600160a01b03168084611958565b50506001600455505050565b6001600160a01b03851633148061097b575061097b8533610503565b6109e25760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106d1565b6109ef85858585856119bb565b5050505050565b600082815260036020526040902060010154610a118161190d565b610a1b8383611b6b565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a4a8161190d565b60c8831115610a925760405162461bcd60e51b815260206004820152601460248201527311185a5b1e48131a5b5a5d08115e18d95959195960621b60448201526064016106d1565b6001600160a01b03841660009081526011602052604081206004810154909190610abd90429061194c565b905062015180811115610ad257600060058301555b600582015460c890610ae49087611bf1565b1115610b295760405162461bcd60e51b815260206004820152601460248201527311185a5b1e48131a5b5a5d08115e18d95959195960621b60448201526064016106d1565b6005820154610b389086611bf1565b600580840191909155426004840155610b549087908787611bfd565b505050505050565b610b64611d11565b33600090815260116020526040902060125460028201541015610b845750565b6000610b9f601254836002015461194090919063ffffffff16565b9050610bba6012548360020154611d8390919063ffffffff16565b82600201819055506107253360058360405180602001604052806000815250611bfd565b6001600160a01b0381163314610c4e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016106d1565b6107258282611d8f565b60608151835114610cbd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106d1565b600083516001600160401b03811115610ce657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d0f578160200160208202803683370190505b50905060005b8451811015610db157610d76858281518110610d4157634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610d6957634e487b7160e01b600052603260045260246000fd5b602002602001015161066a565b828281518110610d9657634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610daa816135e3565b9050610d15565b509392505050565b600e54600f54604051636eb1769f60e11b81523360048201523060248201526001600160a01b039091169063dd62ed3e9060440160206040518083038186803b158015610e0557600080fd5b505afa158015610e19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3d9190613072565b1015610e8b5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682043524f707065726669656c6420746f6b656e73000060448201526064016106d1565b600c54600b5410610ecb5760405162461bcd60e51b815260206004820152600a602482015269105b1b08135a5b9d195960b21b60448201526064016106d1565b6000610ee960646108f9600a54600e5461192d90919063ffffffff16565b9050600081600e54610efb9190613522565b600854600f54919250610f1d916001600160a01b039081169133911684611df6565b600f54610f35906001600160a01b0316338185611df6565b60006064601054600560009054906101000a90046001600160a01b03166001600160a01b0316633b3dca766040518163ffffffff1660e01b815260040160206040518083038186803b158015610f8a57600080fd5b505afa158015610f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc29190613072565b424433604051602001610fd99594939291906131a2565b6040516020818303038152906040528051906020012060001c610ffc91906135fe565b60108054919250600061100e836135e3565b9091555050600b8054906000611023836135e3565b90915550506035811161108b5761104d336000600160405180602001604052806000815250611bfd565b600d60008154811061106f57634e487b7160e01b600052603260045260246000fd5b60009182526020822001805491611085836135e3565b91905055505b6036811015801561109d5750604f8111155b156110fc576110be3360018060405180602001604052806000815250611bfd565b600d6001815481106110e057634e487b7160e01b600052603260045260246000fd5b600091825260208220018054916110f6836135e3565b91905055505b6050811015801561110e5750605d8111155b1561116e57611130336002600160405180602001604052806000815250611bfd565b600d60028154811061115257634e487b7160e01b600052603260045260246000fd5b60009182526020822001805491611168836135e3565b91905055505b605e8110158015611180575060628111155b156111e0576111a2336003600160405180602001604052806000815250611bfd565b600d6003815481106111c457634e487b7160e01b600052603260045260246000fd5b600091825260208220018054916111da836135e3565b91905055505b8060631415610a1b57611206336004600160405180602001604052806000815250611bfd565b600d60048154811061122857634e487b7160e01b600052603260045260246000fd5b6000918252602082200180549161123e836135e3565b9190505550505050565b33600090815260116020526040812060038101548290611278906103e8906108f990670de0b6b3a7640000611940565b9050600061129d8261129785600101544261194c90919063ffffffff16565b9061192d565b83600201546112ac91906134d7565b949350505050565b6001600160a01b0383163314806112d057506112d08333610503565b6112ec5760405162461bcd60e51b81526004016106d190613351565b610a1b838383611e34565b60006113028161190d565b50600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600d818154811061133557600080fd5b600091825260209091200154905081565b60006113518161190d565b50600c55565b60006113628161190d565b6107257f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a683611b6b565b6005811061139957600080fd5b600482106113dd5760405162461bcd60e51b815260206004820152601160248201527043616e277420757365205370686572657360781b60448201526064016106d1565b60056113e9338461066a565b10156114295760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420656e6f756768204e46547360881b60448201526064016106d1565b60006064601054600560009054906101000a90046001600160a01b03166001600160a01b0316633b3dca766040518163ffffffff1660e01b815260040160206040518083038186803b15801561147e57600080fd5b505afa158015611492573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b69190613072565b4244336040516020016114cd9594939291906131a2565b6040516020818303038152906040528051906020012060001c6114f091906135fe565b905060006115096009548461192d90919063ffffffff16565b90506000611522601461151c868261192d565b90611bf1565b9050806003861015611610578084106115aa5761154133876005611fda565b61154d33600585611fda565b6115733361155c8860016134d7565b600160405180602001604052806000815250611bfd565b61157e8660016134d7565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a35b80841015611610576115be33876005611fda565b6115ca33600585611fda565b6115d93361155c8860026134d7565b6115e48660026134d7565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a35b8560031415610b545761162533876005611fda565b6116343361155c8860016134d7565b61163f8660016134d7565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a3505050505050565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b600780546107369061357c565b6107253383836120de565b60006116c08161190d565b50600955565b600260045414156117195760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106d1565b60026004908155600f546040516370a0823160e01b8152339281019290925282916001600160a01b03909116906370a082319060240160206040518083038186803b15801561176757600080fd5b505afa15801561177b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179f9190613072565b10156117aa57600080fd5b6117b2610b5c565b33600090815260116020526040902042815560038101546117d39083611bf1565b6003820155600f546117f0906001600160a01b0316333085611df6565b50506001600455565b60006118048161190d565b50601255565b6000828152600360205260409020600101546118258161190d565b610a1b8383611d8f565b6001600160a01b03851633148061184b575061184b8533610503565b6118675760405162461bcd60e51b81526004016106d190613351565b6109ef85858585856121bf565b600061187f8161190d565b50600e55565b6001600160a01b0383163314806118a157506118a18333610503565b6118bd5760405162461bcd60e51b81526004016106d190613351565b610a1b838383611fda565b60006118d38161190d565b50600a55565b6001600160a01b03163b151590565b60006001600160e01b03198216637965db0b60e01b148061070b575061070b826122e9565b6119178133612339565b50565b80516107259060029060208401906129f2565b60006119398284613503565b9392505050565b600061193982846134ef565b60006119398284613522565b6040516001600160a01b038316602482015260448101829052610a1b90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261239d565b81518351146119dc5760405162461bcd60e51b81526004016106d19061346c565b6001600160a01b038416611a025760405162461bcd60e51b81526004016106d19061339a565b3360005b8451811015611b05576000858281518110611a3157634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110611a5d57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611aad5760405162461bcd60e51b81526004016106d190613422565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611aea9084906134d7565b9250508190555050505080611afe906135e3565b9050611a06565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b55929190613284565b60405180910390a4610b5481878787878761246f565b611b758282611672565b6107255760008281526003602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611bad3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600061193982846134d7565b6001600160a01b038416611c5d5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106d1565b336000611c69856125da565b90506000611c76856125da565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290611ca89084906134d7565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611d0883600089898989612633565b50505050505050565b3360009081526011602052604081206003810154909190611d42906103e8906108f990670de0b6b3a7640000611940565b90506000611d618261129785600101544261194c90919063ffffffff16565b9050808360020154611d7391906134d7565b6002840155505042600190910155565b600061193982846135fe565b611d998282611672565b156107255760008281526003602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6040516001600160a01b0380851660248301528316604482015260648101829052611e2e9085906323b872dd60e01b90608401611984565b50505050565b6001600160a01b038316611e5a5760405162461bcd60e51b81526004016106d1906133df565b8051825114611e7b5760405162461bcd60e51b81526004016106d19061346c565b604080516020810190915260009081905233905b8351811015611f6d576000848281518110611eba57634e487b7160e01b600052603260045260246000fd5b602002602001015190506000848381518110611ee657634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611f365760405162461bcd60e51b81526004016106d19061330d565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611f65816135e3565b915050611e8f565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611fbe929190613284565b60405180910390a4604080516020810190915260009052611e2e565b6001600160a01b0383166120005760405162461bcd60e51b81526004016106d1906133df565b33600061200c846125da565b90506000612019846125da565b60408051602080820183526000918290528882528181528282206001600160a01b038b16835290522054909150848110156120665760405162461bcd60e51b81526004016106d19061330d565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052611d08565b816001600160a01b0316836001600160a01b031614156121525760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106d1565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166121e55760405162461bcd60e51b81526004016106d19061339a565b3360006121f1856125da565b905060006121fe856125da565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156122415760405162461bcd60e51b81526004016106d190613422565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061227e9084906134d7565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46122de848a8a8a8a8a612633565b505050505050505050565b60006001600160e01b03198216636cdb3d1360e11b148061231a57506001600160e01b031982166303a24d0760e21b145b8061070b57506301ffc9a760e01b6001600160e01b031983161461070b565b6123438282611672565b6107255761235b816001600160a01b031660146126fd565b6123668360206126fd565b60405160200161237792919061312d565b60408051601f198184030181529082905262461bcd60e51b82526106d1916004016132b2565b60006123f2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128de9092919063ffffffff16565b805190915015610a1b57808060200190518101906124109190612f9f565b610a1b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016106d1565b6001600160a01b0384163b15610b545760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906124b390899089908890889088906004016131d9565b602060405180830381600087803b1580156124cd57600080fd5b505af19250505080156124fd575060408051601f3d908101601f191682019092526124fa91810190613011565b60015b6125aa57612509613654565b806308c379a01415612543575061251e61366c565b806125295750612545565b8060405162461bcd60e51b81526004016106d191906132b2565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106d1565b6001600160e01b0319811663bc197c8160e01b14611d085760405162461bcd60e51b81526004016106d1906132c5565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061262257634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b15610b545760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906126779089908990889088908890600401613237565b602060405180830381600087803b15801561269157600080fd5b505af19250505080156126c1575060408051601f3d908101601f191682019092526126be91810190613011565b60015b6126cd57612509613654565b6001600160e01b0319811663f23a6e6160e01b14611d085760405162461bcd60e51b81526004016106d1906132c5565b6060600061270c836002613503565b6127179060026134d7565b6001600160401b0381111561273c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612766576020820181803683370190505b509050600360fc1b8160008151811061278f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106127cc57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006127f0846002613503565b6127fb9060016134d7565b90505b600181111561288f576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061283d57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061286157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361288881613565565b90506127fe565b5083156119395760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016106d1565b60606112ac8484600085856001600160a01b0385163b6129405760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106d1565b600080866001600160a01b0316858760405161295c9190613111565b60006040518083038185875af1925050503d8060008114612999576040519150601f19603f3d011682016040523d82523d6000602084013e61299e565b606091505b50915091506129ae8282866129b9565b979650505050505050565b606083156129c8575081611939565b8251156129d85782518084602001fd5b8160405162461bcd60e51b81526004016106d191906132b2565b8280546129fe9061357c565b90600052602060002090601f016020900481019282612a205760008555612a66565b82601f10612a3957805160ff1916838001178555612a66565b82800160010185558215612a66579182015b82811115612a66578251825591602001919060010190612a4b565b50612a72929150612a76565b5090565b5b80821115612a725760008155600101612a77565b60006001600160401b03831115612aa457612aa461363e565b604051612abb601f8501601f1916602001826135b7565b809150838152848484011115612ad057600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114612aff57600080fd5b919050565b600082601f830112612b14578081fd5b81356020612b21826134b4565b604051612b2e82826135b7565b8381528281019150858301600585901b87018401881015612b4d578586fd5b855b85811015612b6b57813584529284019290840190600101612b4f565b5090979650505050505050565b600082601f830112612b88578081fd5b61193983833560208501612a8b565b600060208284031215612ba8578081fd5b61193982612ae8565b60008060408385031215612bc3578081fd5b612bcc83612ae8565b9150612bda60208401612ae8565b90509250929050565b600080600080600060a08688031215612bfa578081fd5b612c0386612ae8565b9450612c1160208701612ae8565b935060408601356001600160401b0380821115612c2c578283fd5b612c3889838a01612b04565b94506060880135915080821115612c4d578283fd5b612c5989838a01612b04565b93506080880135915080821115612c6e578283fd5b50612c7b88828901612b78565b9150509295509295909350565b60008060008060008060a08789031215612ca0578081fd5b612ca987612ae8565b9550612cb760208801612ae8565b9450604087013593506060870135925060808701356001600160401b0380821115612ce0578283fd5b818901915089601f830112612cf3578283fd5b813581811115612d01578384fd5b8a6020828501011115612d12578384fd5b6020830194508093505050509295509295509295565b600080600080600060a08688031215612d3f578081fd5b612d4886612ae8565b9450612d5660208701612ae8565b9350604086013592506060860135915060808601356001600160401b03811115612d7e578182fd5b612c7b88828901612b78565b600080600060608486031215612d9e578081fd5b612da784612ae8565b925060208401356001600160401b0380821115612dc2578283fd5b612dce87838801612b04565b93506040860135915080821115612de3578283fd5b50612df086828701612b04565b9150509250925092565b60008060408385031215612e0c578182fd5b612e1583612ae8565b91506020830135612e25816136f5565b809150509250929050565b60008060408385031215612e42578182fd5b612e4b83612ae8565b946020939093013593505050565b600080600060608486031215612e6d578081fd5b612e7684612ae8565b92506020840135915060408401356001600160401b03811115612e97578182fd5b612df086828701612b78565b600080600060608486031215612eb7578081fd5b612ec084612ae8565b95602085013595506040909401359392505050565b60008060408385031215612ee7578182fd5b82356001600160401b0380821115612efd578384fd5b818501915085601f830112612f10578384fd5b81356020612f1d826134b4565b604051612f2a82826135b7565b8381528281019150858301600585901b870184018b1015612f49578889fd5b8896505b84871015612f7257612f5e81612ae8565b835260019690960195918301918301612f4d565b5096505086013592505080821115612f88578283fd5b50612f9585828601612b04565b9150509250929050565b600060208284031215612fb0578081fd5b8151611939816136f5565b600060208284031215612fcc578081fd5b5035919050565b60008060408385031215612fe5578182fd5b82359150612bda60208401612ae8565b600060208284031215613006578081fd5b813561193981613703565b600060208284031215613022578081fd5b815161193981613703565b60006020828403121561303e578081fd5b81356001600160401b03811115613053578182fd5b8201601f81018413613063578182fd5b6112ac84823560208401612a8b565b600060208284031215613083578081fd5b5051919050565b6000806040838503121561309c578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b838110156130da578151875295820195908201906001016130be565b509495945050505050565b600081518084526130fd816020860160208601613539565b601f01601f19169290920160200192915050565b60008251613123818460208701613539565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613165816017850160208801613539565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613196816028840160208801613539565b01602801949350505050565b948552602085019390935260408401919091526060808401919091521b6bffffffffffffffffffffffff1916608082015260940190565b6001600160a01b0386811682528516602082015260a060408201819052600090613205908301866130ab565b828103606084015261321781866130ab565b9050828103608084015261322b81856130e5565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906129ae908301846130e5565b60208152600061193960208301846130ab565b60408152600061329760408301856130ab565b82810360208401526132a981856130ab565b95945050505050565b60208152600061193960208301846130e5565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60006001600160401b038211156134cd576134cd61363e565b5060051b60200190565b600082198211156134ea576134ea613612565b500190565b6000826134fe576134fe613628565b500490565b600081600019048311821515161561351d5761351d613612565b500290565b60008282101561353457613534613612565b500390565b60005b8381101561355457818101518382015260200161353c565b83811115611e2e5750506000910152565b60008161357457613574613612565b506000190190565b600181811c9082168061359057607f821691505b602082108114156135b157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b03811182821017156135dc576135dc61363e565b6040525050565b60006000198214156135f7576135f7613612565b5060010190565b60008261360d5761360d613628565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561366957600481823e5160e01c5b90565b600060443d101561367a5790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156136a957505050505090565b82850191508151818111156136c15750505050505090565b843d87010160208285010111156136db5750505050505090565b6136ea602082860101876135b7565b509095945050505050565b801515811461191757600080fd5b6001600160e01b03198116811461191757600080fdfea264697066735822122062236fd2104976173ee947ad909a5c25c5f1bb88edaad219667fff4164c89ac564736f6c6343000804003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d596d4268367433537878346b7353654e54656b6f63597a63634b566772314464366d713834444d7a707247792f7b69647d2e6a736f6e000000000000000000000000c40469cccb76e080d26b84f460753bc0cf57f90b000000000000000000000000535c2d8cfa15a6bba40f7b34ce07b1038d9fb506
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102685760003560e01c80638a50fecb11610151578063d5391393116100c3578063f23a6e6111610087578063f23a6e61146105a1578063f242432a146105f3578063f4a0a52814610606578063f5298aca14610619578063f75bbeec1461062c578063ffc3fddd1461065757600080fd5b8063d5391393146104b2578063d547741f146104d9578063e1c5af5b146104ec578063e985e9c5146104f5578063ede85eb71461053157600080fd5b8063a899406711610115578063a89940671461045e578063b6b55f2514610471578063b7dd214f14610484578063bcfedd701461048d578063c002d23d14610496578063ccf0b4a61461049f57600080fd5b80638a50fecb1461041557806391d148541461042857806395d89b411461043b578063a217fddf14610443578063a22cb4651461044b57600080fd5b806334450615116101ea578063646745b0116101ae578063646745b0146103ae5780636b20c454146103b6578063784bdab4146103c95780637dc0bf3f146103dc5780638206dede146103ef5780638a17f47e1461040257600080fd5b8063344506151461036257806336568abe1461036a57806346e8bbe51461037d5780634e1273f4146103865780635a1c3cbe146103a657600080fd5b8063248a9ca311610231578063248a9ca3146102f35780632e1a7d4d146103165780632eb2c2d6146103295780632f2ff15d1461033c57806331091ba31461034f57600080fd5b8062fdd58e1461026d57806301ffc9a71461029357806302fe5305146102b657806306fdde03146102cb5780630e89341c146102e0575b600080fd5b61028061027b366004612e30565b61066a565b6040519081526020015b60405180910390f35b6102a66102a1366004612ff5565b610700565b604051901515815260200161028a565b6102c96102c436600461302d565b610711565b005b6102d3610729565b60405161028a91906132b2565b6102d36102ee366004612fbb565b6107b7565b610280610301366004612fbb565b60009081526003602052604090206001015490565b6102c9610324366004612fbb565b61084b565b6102c9610337366004612be3565b61095f565b6102c961034a366004612fd3565b6109f6565b6102c961035d366004612e59565b610a20565b6102c9610b5c565b6102c9610378366004612fd3565b610bde565b61028060095481565b610399610394366004612ed5565b610c58565b60405161028a9190613271565b6102c9610db9565b610280611248565b6102c96103c4366004612d8a565b6112b4565b6102c96103d7366004612b97565b6112f7565b6102806103ea366004612fbb565b611325565b6102c96103fd366004612fbb565b611346565b6102c9610410366004612b97565b611357565b6102c961042336600461308a565b61138c565b6102a6610436366004612fd3565b611672565b6102d361169d565b610280600081565b6102c9610459366004612dfa565b6116aa565b6102c961046c366004612fbb565b6116b5565b6102c961047f366004612fbb565b6116c6565b610280600c5481565b610280600b5481565b610280600e5481565b6102c96104ad366004612fbb565b6117f9565b6102807f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102c96104e7366004612fd3565b61180a565b610280600a5481565b6102a6610503366004612bb1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61057461053f366004612b97565b601160205260009081526040902080546001820154600283015460038401546004850154600590950154939492939192909186565b604080519687526020870195909552938501929092526060840152608083015260a082015260c00161028a565b6105da6105af366004612c88565b7ff23a6e612e1ff4830e658fe43f4e3cb4a5f8170bd5d9e69fb5d7a7fa9e4fdf979695505050505050565b6040516001600160e01b0319909116815260200161028a565b6102c9610601366004612d28565b61182f565b6102c9610614366004612fbb565b611874565b6102c9610627366004612ea3565b611885565b600f5461063f906001600160a01b031681565b6040516001600160a01b03909116815260200161028a565b6102c9610665366004612fbb565b6118c8565b60006001600160a01b0383166106da5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b600061070b826118e8565b92915050565b600061071c8161190d565b6107258261191a565b5050565b600680546107369061357c565b80601f01602080910402602001604051908101604052809291908181526020018280546107629061357c565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b505050505081565b6060600280546107c69061357c565b80601f01602080910402602001604051908101604052809291908181526020018280546107f29061357c565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b50505050509050919050565b6002600454141561089e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106d1565b600260045533600090815260116020526040902060038101548211156108c357600080fd5b6108cb610b5c565b80546000906108da9042613522565b9050600062093a80821015610902576108ff60646108f986600561192d565b90611940565b90505b600061090e858361194c565b90508484600301546109209190613522565b6003850155600f5461093c906001600160a01b03163383611958565b600f54610953906001600160a01b03168084611958565b50506001600455505050565b6001600160a01b03851633148061097b575061097b8533610503565b6109e25760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106d1565b6109ef85858585856119bb565b5050505050565b600082815260036020526040902060010154610a118161190d565b610a1b8383611b6b565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a4a8161190d565b60c8831115610a925760405162461bcd60e51b815260206004820152601460248201527311185a5b1e48131a5b5a5d08115e18d95959195960621b60448201526064016106d1565b6001600160a01b03841660009081526011602052604081206004810154909190610abd90429061194c565b905062015180811115610ad257600060058301555b600582015460c890610ae49087611bf1565b1115610b295760405162461bcd60e51b815260206004820152601460248201527311185a5b1e48131a5b5a5d08115e18d95959195960621b60448201526064016106d1565b6005820154610b389086611bf1565b600580840191909155426004840155610b549087908787611bfd565b505050505050565b610b64611d11565b33600090815260116020526040902060125460028201541015610b845750565b6000610b9f601254836002015461194090919063ffffffff16565b9050610bba6012548360020154611d8390919063ffffffff16565b82600201819055506107253360058360405180602001604052806000815250611bfd565b6001600160a01b0381163314610c4e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016106d1565b6107258282611d8f565b60608151835114610cbd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106d1565b600083516001600160401b03811115610ce657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d0f578160200160208202803683370190505b50905060005b8451811015610db157610d76858281518110610d4157634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610d6957634e487b7160e01b600052603260045260246000fd5b602002602001015161066a565b828281518110610d9657634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610daa816135e3565b9050610d15565b509392505050565b600e54600f54604051636eb1769f60e11b81523360048201523060248201526001600160a01b039091169063dd62ed3e9060440160206040518083038186803b158015610e0557600080fd5b505afa158015610e19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3d9190613072565b1015610e8b5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682043524f707065726669656c6420746f6b656e73000060448201526064016106d1565b600c54600b5410610ecb5760405162461bcd60e51b815260206004820152600a602482015269105b1b08135a5b9d195960b21b60448201526064016106d1565b6000610ee960646108f9600a54600e5461192d90919063ffffffff16565b9050600081600e54610efb9190613522565b600854600f54919250610f1d916001600160a01b039081169133911684611df6565b600f54610f35906001600160a01b0316338185611df6565b60006064601054600560009054906101000a90046001600160a01b03166001600160a01b0316633b3dca766040518163ffffffff1660e01b815260040160206040518083038186803b158015610f8a57600080fd5b505afa158015610f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc29190613072565b424433604051602001610fd99594939291906131a2565b6040516020818303038152906040528051906020012060001c610ffc91906135fe565b60108054919250600061100e836135e3565b9091555050600b8054906000611023836135e3565b90915550506035811161108b5761104d336000600160405180602001604052806000815250611bfd565b600d60008154811061106f57634e487b7160e01b600052603260045260246000fd5b60009182526020822001805491611085836135e3565b91905055505b6036811015801561109d5750604f8111155b156110fc576110be3360018060405180602001604052806000815250611bfd565b600d6001815481106110e057634e487b7160e01b600052603260045260246000fd5b600091825260208220018054916110f6836135e3565b91905055505b6050811015801561110e5750605d8111155b1561116e57611130336002600160405180602001604052806000815250611bfd565b600d60028154811061115257634e487b7160e01b600052603260045260246000fd5b60009182526020822001805491611168836135e3565b91905055505b605e8110158015611180575060628111155b156111e0576111a2336003600160405180602001604052806000815250611bfd565b600d6003815481106111c457634e487b7160e01b600052603260045260246000fd5b600091825260208220018054916111da836135e3565b91905055505b8060631415610a1b57611206336004600160405180602001604052806000815250611bfd565b600d60048154811061122857634e487b7160e01b600052603260045260246000fd5b6000918252602082200180549161123e836135e3565b9190505550505050565b33600090815260116020526040812060038101548290611278906103e8906108f990670de0b6b3a7640000611940565b9050600061129d8261129785600101544261194c90919063ffffffff16565b9061192d565b83600201546112ac91906134d7565b949350505050565b6001600160a01b0383163314806112d057506112d08333610503565b6112ec5760405162461bcd60e51b81526004016106d190613351565b610a1b838383611e34565b60006113028161190d565b50600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600d818154811061133557600080fd5b600091825260209091200154905081565b60006113518161190d565b50600c55565b60006113628161190d565b6107257f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a683611b6b565b6005811061139957600080fd5b600482106113dd5760405162461bcd60e51b815260206004820152601160248201527043616e277420757365205370686572657360781b60448201526064016106d1565b60056113e9338461066a565b10156114295760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420656e6f756768204e46547360881b60448201526064016106d1565b60006064601054600560009054906101000a90046001600160a01b03166001600160a01b0316633b3dca766040518163ffffffff1660e01b815260040160206040518083038186803b15801561147e57600080fd5b505afa158015611492573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b69190613072565b4244336040516020016114cd9594939291906131a2565b6040516020818303038152906040528051906020012060001c6114f091906135fe565b905060006115096009548461192d90919063ffffffff16565b90506000611522601461151c868261192d565b90611bf1565b9050806003861015611610578084106115aa5761154133876005611fda565b61154d33600585611fda565b6115733361155c8860016134d7565b600160405180602001604052806000815250611bfd565b61157e8660016134d7565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a35b80841015611610576115be33876005611fda565b6115ca33600585611fda565b6115d93361155c8860026134d7565b6115e48660026134d7565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a35b8560031415610b545761162533876005611fda565b6116343361155c8860016134d7565b61163f8660016134d7565b60405133907f9248f8ddb2df28e0bd1719c4a8d4b3a2a32ca98b905988074226c6728b84c95490600090a3505050505050565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b600780546107369061357c565b6107253383836120de565b60006116c08161190d565b50600955565b600260045414156117195760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106d1565b60026004908155600f546040516370a0823160e01b8152339281019290925282916001600160a01b03909116906370a082319060240160206040518083038186803b15801561176757600080fd5b505afa15801561177b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179f9190613072565b10156117aa57600080fd5b6117b2610b5c565b33600090815260116020526040902042815560038101546117d39083611bf1565b6003820155600f546117f0906001600160a01b0316333085611df6565b50506001600455565b60006118048161190d565b50601255565b6000828152600360205260409020600101546118258161190d565b610a1b8383611d8f565b6001600160a01b03851633148061184b575061184b8533610503565b6118675760405162461bcd60e51b81526004016106d190613351565b6109ef85858585856121bf565b600061187f8161190d565b50600e55565b6001600160a01b0383163314806118a157506118a18333610503565b6118bd5760405162461bcd60e51b81526004016106d190613351565b610a1b838383611fda565b60006118d38161190d565b50600a55565b6001600160a01b03163b151590565b60006001600160e01b03198216637965db0b60e01b148061070b575061070b826122e9565b6119178133612339565b50565b80516107259060029060208401906129f2565b60006119398284613503565b9392505050565b600061193982846134ef565b60006119398284613522565b6040516001600160a01b038316602482015260448101829052610a1b90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261239d565b81518351146119dc5760405162461bcd60e51b81526004016106d19061346c565b6001600160a01b038416611a025760405162461bcd60e51b81526004016106d19061339a565b3360005b8451811015611b05576000858281518110611a3157634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110611a5d57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611aad5760405162461bcd60e51b81526004016106d190613422565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611aea9084906134d7565b9250508190555050505080611afe906135e3565b9050611a06565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b55929190613284565b60405180910390a4610b5481878787878761246f565b611b758282611672565b6107255760008281526003602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611bad3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600061193982846134d7565b6001600160a01b038416611c5d5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106d1565b336000611c69856125da565b90506000611c76856125da565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290611ca89084906134d7565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611d0883600089898989612633565b50505050505050565b3360009081526011602052604081206003810154909190611d42906103e8906108f990670de0b6b3a7640000611940565b90506000611d618261129785600101544261194c90919063ffffffff16565b9050808360020154611d7391906134d7565b6002840155505042600190910155565b600061193982846135fe565b611d998282611672565b156107255760008281526003602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6040516001600160a01b0380851660248301528316604482015260648101829052611e2e9085906323b872dd60e01b90608401611984565b50505050565b6001600160a01b038316611e5a5760405162461bcd60e51b81526004016106d1906133df565b8051825114611e7b5760405162461bcd60e51b81526004016106d19061346c565b604080516020810190915260009081905233905b8351811015611f6d576000848281518110611eba57634e487b7160e01b600052603260045260246000fd5b602002602001015190506000848381518110611ee657634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611f365760405162461bcd60e51b81526004016106d19061330d565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611f65816135e3565b915050611e8f565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611fbe929190613284565b60405180910390a4604080516020810190915260009052611e2e565b6001600160a01b0383166120005760405162461bcd60e51b81526004016106d1906133df565b33600061200c846125da565b90506000612019846125da565b60408051602080820183526000918290528882528181528282206001600160a01b038b16835290522054909150848110156120665760405162461bcd60e51b81526004016106d19061330d565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052611d08565b816001600160a01b0316836001600160a01b031614156121525760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106d1565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166121e55760405162461bcd60e51b81526004016106d19061339a565b3360006121f1856125da565b905060006121fe856125da565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156122415760405162461bcd60e51b81526004016106d190613422565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061227e9084906134d7565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46122de848a8a8a8a8a612633565b505050505050505050565b60006001600160e01b03198216636cdb3d1360e11b148061231a57506001600160e01b031982166303a24d0760e21b145b8061070b57506301ffc9a760e01b6001600160e01b031983161461070b565b6123438282611672565b6107255761235b816001600160a01b031660146126fd565b6123668360206126fd565b60405160200161237792919061312d565b60408051601f198184030181529082905262461bcd60e51b82526106d1916004016132b2565b60006123f2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128de9092919063ffffffff16565b805190915015610a1b57808060200190518101906124109190612f9f565b610a1b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016106d1565b6001600160a01b0384163b15610b545760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906124b390899089908890889088906004016131d9565b602060405180830381600087803b1580156124cd57600080fd5b505af19250505080156124fd575060408051601f3d908101601f191682019092526124fa91810190613011565b60015b6125aa57612509613654565b806308c379a01415612543575061251e61366c565b806125295750612545565b8060405162461bcd60e51b81526004016106d191906132b2565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106d1565b6001600160e01b0319811663bc197c8160e01b14611d085760405162461bcd60e51b81526004016106d1906132c5565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061262257634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b15610b545760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906126779089908990889088908890600401613237565b602060405180830381600087803b15801561269157600080fd5b505af19250505080156126c1575060408051601f3d908101601f191682019092526126be91810190613011565b60015b6126cd57612509613654565b6001600160e01b0319811663f23a6e6160e01b14611d085760405162461bcd60e51b81526004016106d1906132c5565b6060600061270c836002613503565b6127179060026134d7565b6001600160401b0381111561273c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612766576020820181803683370190505b509050600360fc1b8160008151811061278f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106127cc57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006127f0846002613503565b6127fb9060016134d7565b90505b600181111561288f576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061283d57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061286157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361288881613565565b90506127fe565b5083156119395760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016106d1565b60606112ac8484600085856001600160a01b0385163b6129405760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106d1565b600080866001600160a01b0316858760405161295c9190613111565b60006040518083038185875af1925050503d8060008114612999576040519150601f19603f3d011682016040523d82523d6000602084013e61299e565b606091505b50915091506129ae8282866129b9565b979650505050505050565b606083156129c8575081611939565b8251156129d85782518084602001fd5b8160405162461bcd60e51b81526004016106d191906132b2565b8280546129fe9061357c565b90600052602060002090601f016020900481019282612a205760008555612a66565b82601f10612a3957805160ff1916838001178555612a66565b82800160010185558215612a66579182015b82811115612a66578251825591602001919060010190612a4b565b50612a72929150612a76565b5090565b5b80821115612a725760008155600101612a77565b60006001600160401b03831115612aa457612aa461363e565b604051612abb601f8501601f1916602001826135b7565b809150838152848484011115612ad057600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114612aff57600080fd5b919050565b600082601f830112612b14578081fd5b81356020612b21826134b4565b604051612b2e82826135b7565b8381528281019150858301600585901b87018401881015612b4d578586fd5b855b85811015612b6b57813584529284019290840190600101612b4f565b5090979650505050505050565b600082601f830112612b88578081fd5b61193983833560208501612a8b565b600060208284031215612ba8578081fd5b61193982612ae8565b60008060408385031215612bc3578081fd5b612bcc83612ae8565b9150612bda60208401612ae8565b90509250929050565b600080600080600060a08688031215612bfa578081fd5b612c0386612ae8565b9450612c1160208701612ae8565b935060408601356001600160401b0380821115612c2c578283fd5b612c3889838a01612b04565b94506060880135915080821115612c4d578283fd5b612c5989838a01612b04565b93506080880135915080821115612c6e578283fd5b50612c7b88828901612b78565b9150509295509295909350565b60008060008060008060a08789031215612ca0578081fd5b612ca987612ae8565b9550612cb760208801612ae8565b9450604087013593506060870135925060808701356001600160401b0380821115612ce0578283fd5b818901915089601f830112612cf3578283fd5b813581811115612d01578384fd5b8a6020828501011115612d12578384fd5b6020830194508093505050509295509295509295565b600080600080600060a08688031215612d3f578081fd5b612d4886612ae8565b9450612d5660208701612ae8565b9350604086013592506060860135915060808601356001600160401b03811115612d7e578182fd5b612c7b88828901612b78565b600080600060608486031215612d9e578081fd5b612da784612ae8565b925060208401356001600160401b0380821115612dc2578283fd5b612dce87838801612b04565b93506040860135915080821115612de3578283fd5b50612df086828701612b04565b9150509250925092565b60008060408385031215612e0c578182fd5b612e1583612ae8565b91506020830135612e25816136f5565b809150509250929050565b60008060408385031215612e42578182fd5b612e4b83612ae8565b946020939093013593505050565b600080600060608486031215612e6d578081fd5b612e7684612ae8565b92506020840135915060408401356001600160401b03811115612e97578182fd5b612df086828701612b78565b600080600060608486031215612eb7578081fd5b612ec084612ae8565b95602085013595506040909401359392505050565b60008060408385031215612ee7578182fd5b82356001600160401b0380821115612efd578384fd5b818501915085601f830112612f10578384fd5b81356020612f1d826134b4565b604051612f2a82826135b7565b8381528281019150858301600585901b870184018b1015612f49578889fd5b8896505b84871015612f7257612f5e81612ae8565b835260019690960195918301918301612f4d565b5096505086013592505080821115612f88578283fd5b50612f9585828601612b04565b9150509250929050565b600060208284031215612fb0578081fd5b8151611939816136f5565b600060208284031215612fcc578081fd5b5035919050565b60008060408385031215612fe5578182fd5b82359150612bda60208401612ae8565b600060208284031215613006578081fd5b813561193981613703565b600060208284031215613022578081fd5b815161193981613703565b60006020828403121561303e578081fd5b81356001600160401b03811115613053578182fd5b8201601f81018413613063578182fd5b6112ac84823560208401612a8b565b600060208284031215613083578081fd5b5051919050565b6000806040838503121561309c578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b838110156130da578151875295820195908201906001016130be565b509495945050505050565b600081518084526130fd816020860160208601613539565b601f01601f19169290920160200192915050565b60008251613123818460208701613539565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613165816017850160208801613539565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613196816028840160208801613539565b01602801949350505050565b948552602085019390935260408401919091526060808401919091521b6bffffffffffffffffffffffff1916608082015260940190565b6001600160a01b0386811682528516602082015260a060408201819052600090613205908301866130ab565b828103606084015261321781866130ab565b9050828103608084015261322b81856130e5565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906129ae908301846130e5565b60208152600061193960208301846130ab565b60408152600061329760408301856130ab565b82810360208401526132a981856130ab565b95945050505050565b60208152600061193960208301846130e5565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60006001600160401b038211156134cd576134cd61363e565b5060051b60200190565b600082198211156134ea576134ea613612565b500190565b6000826134fe576134fe613628565b500490565b600081600019048311821515161561351d5761351d613612565b500290565b60008282101561353457613534613612565b500390565b60005b8381101561355457818101518382015260200161353c565b83811115611e2e5750506000910152565b60008161357457613574613612565b506000190190565b600181811c9082168061359057607f821691505b602082108114156135b157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b03811182821017156135dc576135dc61363e565b6040525050565b60006000198214156135f7576135f7613612565b5060010190565b60008261360d5761360d613628565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561366957600481823e5160e01c5b90565b600060443d101561367a5790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156136a957505050505090565b82850191508151818111156136c15750505050505090565b843d87010160208285010111156136db5750505050505090565b6136ea602082860101876135b7565b509095945050505050565b801515811461191757600080fd5b6001600160e01b03198116811461191757600080fdfea264697066735822122062236fd2104976173ee947ad909a5c25c5f1bb88edaad219667fff4164c89ac564736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c40469cccb76e080d26b84f460753bc0cf57f90b000000000000000000000000535c2d8cfa15a6bba40f7b34ce07b1038d9fb506
-----Decoded View---------------
Arg [0] : CROpperfield (address): 0xc40469cCcb76e080d26B84f460753Bc0cf57f90b
Arg [1] : oracleaddress (address): 0x535C2D8Cfa15A6bBa40F7b34cE07B1038D9fb506
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c40469cccb76e080d26b84f460753bc0cf57f90b
Arg [1] : 000000000000000000000000535c2d8cfa15a6bba40f7b34ce07b1038d9fb506
Deployed Bytecode Sourcemap
63294:8819:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46558:230;;;;;;:::i;:::-;;:::i;:::-;;;16397:25:1;;;16385:2;16370:18;46558:230:0;;;;;;;;64539:210;;;;;;:::i;:::-;;:::i;:::-;;;16224:14:1;;16217:22;16199:41;;16187:2;16172:18;64539:210:0;16154:92:1;65120:108:0;;;;;;:::i;:::-;;:::i;:::-;;63561:44;;;:::i;:::-;;;;;;;:::i;46302:105::-;;;;;;:::i;:::-;;:::i;34219:131::-;;;;;;:::i;:::-;34293:7;34320:12;;;:6;:12;;;;;:22;;;;34219:131;70005:649;;;;;;:::i;:::-;;:::i;48496:442::-;;;;;;:::i;:::-;;:::i;34612:147::-;;;;;;:::i;:::-;;:::i;65376:694::-;;;;;;:::i;:::-;;:::i;70666:401::-;;;:::i;35660:218::-;;;;;;:::i;:::-;;:::i;63744:40::-;;;;;;46954:524;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;66078:1241::-;;;:::i;71453:351::-;;;:::i;62647:353::-;;;;;;:::i;:::-;;:::i;67725:129::-;;;;;;:::i;:::-;;:::i;63902:41::-;;;;;;:::i;:::-;;:::i;67330:118::-;;;;;;:::i;:::-;;:::i;65240:128::-;;;;;;:::i;:::-;;:::i;67992:1376::-;;;;;;:::i;:::-;;:::i;32679:147::-;;;;;;:::i;:::-;;:::i;63612:28::-;;;:::i;31784:49::-;;31829:4;31784:49;;47551:155;;;;;;:::i;:::-;;:::i;67581:136::-;;;;;;:::i;:::-;;:::i;69605:388::-;;;;;;:::i;:::-;;:::i;63861:34::-;;;;;;63825:29;;;;;;63950:40;;;;;;69429:168;;;;;;:::i;:::-;;:::i;63392:62::-;;63430:24;63392:62;;35004:149;;;;;;:::i;:::-;;:::i;63791:27::-;;;;;;47778:168;;;;;;:::i;:::-;-1:-1:-1;;;;;47901:27:0;;;47877:4;47901:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;47778:168;65069:42;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27185:25:1;;;27241:2;27226:18;;27219:34;;;;27269:18;;;27262:34;;;;27327:2;27312:18;;27305:34;27370:3;27355:19;;27348:35;27414:3;27399:19;;27392:35;27172:3;27157:19;65069:42:0;27139:294:1;71812:288:0;;;;;;:::i;:::-;72022:69;71812:288;;;;;;;;;;;;-1:-1:-1;;;;;;16595:33:1;;;16577:52;;16565:2;16550:18;71812:288:0;16532:103:1;48018:401:0;;;;;;:::i;:::-;;:::i;67461:112::-;;;;;;:::i;:::-;;:::i;62318:321::-;;;;;;:::i;:::-;;:::i;63997:26::-;;;;;-1:-1:-1;;;;;63997:26:0;;;;;;-1:-1:-1;;;;;12915:32:1;;;12897:51;;12885:2;12870:18;63997:26:0;12852:102:1;67866:118:0;;;;;;:::i;:::-;;:::i;46558:230::-;46644:7;-1:-1:-1;;;;;46672:21:0;;46664:76;;;;-1:-1:-1;;;46664:76:0;;19294:2:1;46664:76:0;;;19276:21:1;19333:2;19313:18;;;19306:30;19372:34;19352:18;;;19345:62;-1:-1:-1;;;19423:18:1;;;19416:40;19473:19;;46664:76:0;;;;;;;;;-1:-1:-1;46758:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;46758:22:0;;;;;;;;;;;;46558:230::o;64539:210::-;64676:4;64705:36;64729:11;64705:23;:36::i;:::-;64698:43;64539:210;-1:-1:-1;;64539:210:0:o;65120:108::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;65205:15:::1;65213:6;65205:7;:15::i;:::-;65120:108:::0;;:::o;63561:44::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46302:105::-;46362:13;46395:4;46388:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46302:105;;;:::o;70005:649::-;18752:1;19350:7;;:19;;19342:63;;;;-1:-1:-1;;;19342:63:0;;25545:2:1;19342:63:0;;;25527:21:1;25584:2;25564:18;;;25557:30;25623:33;25603:18;;;25596:61;25674:18;;19342:63:0;25517:181:1;19342:63:0;18752:1;19483:7;:18;70103:10:::1;70071:21;70095:19:::0;;;:7:::1;:19;::::0;;;;70135:13:::1;::::0;::::1;::::0;:21;-1:-1:-1;70135:21:0::1;70126:31;;;::::0;::::1;;70169:19;:17;:19::i;:::-;70250:23:::0;;70211:18:::1;::::0;70232:41:::1;::::0;:15:::1;:41;:::i;:::-;70211:62;;70285:15;70333:6;70320:10;:19;70316:87;;;70363:22;70381:3;70363:13;:6:::0;70374:1:::1;70363:10;:13::i;:::-;:17:::0;::::1;:22::i;:::-;70353:32;;70316:87;70414:24;70441:19;:6:::0;70452:7;70441:10:::1;:19::i;:::-;70414:46;;70504:6;70488;:13;;;:22;;;;:::i;:::-;70472:13;::::0;::::1;:38:::0;70522:12:::1;::::0;:55:::1;::::0;-1:-1:-1;;;;;70522:12:0::1;70548:10;70560:16:::0;70522:25:::1;:55::i;:::-;70623:12;::::0;70589:57:::1;::::0;-1:-1:-1;;;;;70623:12:0::1;::::0;70638:7;70589:25:::1;:57::i;:::-;-1:-1:-1::0;;18708:1:0;19662:7;:22;-1:-1:-1;;;70005:649:0:o;48496:442::-;-1:-1:-1;;;;;48729:20:0;;684:10;48729:20;;:60;;-1:-1:-1;48753:36:0;48770:4;684:10;47778:168;:::i;48753:36::-;48707:160;;;;-1:-1:-1;;;48707:160:0;;20877:2:1;48707:160:0;;;20859:21:1;20916:2;20896:18;;;20889:30;20955:34;20935:18;;;20928:62;-1:-1:-1;;;21006:18:1;;;20999:48;21064:19;;48707:160:0;20849:240:1;48707:160:0;48878:52;48901:4;48907:2;48911:3;48916:7;48925:4;48878:22;:52::i;:::-;48496:442;;;;;:::o;34612:147::-;34293:7;34320:12;;;:6;:12;;;;;:22;;;32275:16;32286:4;32275:10;:16::i;:::-;34726:25:::1;34737:4;34743:7;34726:10;:25::i;:::-;34612:147:::0;;;:::o;65376:694::-;63430:24;32275:16;32286:4;32275:10;:16::i;:::-;65534:3:::1;65524:6;:13;;65516:46;;;::::0;-1:-1:-1;;;65516:46:0;;23154:2:1;65516:46:0::1;::::0;::::1;23136:21:1::0;23193:2;23173:18;;;23166:30;-1:-1:-1;;;23212:18:1;;;23205:50;23272:18;;65516:46:0::1;23126:170:1::0;65516:46:0::1;-1:-1:-1::0;;;;;65597:16:0;::::1;65573:21;65597:16:::0;;;:7:::1;:16;::::0;;;;65674:23:::1;::::0;::::1;::::0;65597:16;;65573:21;65654:44:::1;::::0;:15:::1;::::0;:19:::1;:44::i;:::-;65624:74;;65734:6;65713:19;:27;65709:87;;;65783:1;65752:28;::::0;::::1;:32:::0;65709:87:::1;65814:28;::::0;::::1;::::0;65858:3:::1;::::0;65814:40:::1;::::0;65847:6;65814:32:::1;:40::i;:::-;:47;;65806:80;;;::::0;-1:-1:-1;;;65806:80:0;;23154:2:1;65806:80:0::1;::::0;::::1;23136:21:1::0;23193:2;23173:18;;;23166:30;-1:-1:-1;;;23212:18:1;;;23205:50;23272:18;;65806:80:0::1;23126:170:1::0;65806:80:0::1;65928:28;::::0;::::1;::::0;:40:::1;::::0;65961:6;65928:32:::1;:40::i;:::-;65897:28;::::0;;::::1;:71:::0;;;;66005:15:::1;65979:23;::::0;::::1;:41:::0;66031:31:::1;::::0;66037:7;;66049:6;66057:4;66031:5:::1;:31::i;:::-;32302:1;;65376:694:::0;;;;:::o;70666:401::-;70714:15;:13;:15::i;:::-;70773:10;70741:21;70765:19;;;:7;:19;;;;;70816;;70800:13;;;;:35;70796:75;;;70852:7;70666:401::o;70796:75::-;70883:16;70902:38;70920:19;;70902:6;:13;;;:17;;:38;;;;:::i;:::-;70883:57;;70970:38;70988:19;;70970:6;:13;;;:17;;:38;;;;:::i;:::-;70954:6;:13;;:54;;;;71022:34;71028:10;71039:1;71041:11;71022:34;;;;;;;;;;;;:5;:34::i;35660:218::-;-1:-1:-1;;;;;35756:23:0;;684:10;35756:23;35748:83;;;;-1:-1:-1;;;35748:83:0;;26249:2:1;35748:83:0;;;26231:21:1;26288:2;26268:18;;;26261:30;26327:34;26307:18;;;26300:62;-1:-1:-1;;;26378:18:1;;;26371:45;26433:19;;35748:83:0;26221:237:1;35748:83:0;35844:26;35856:4;35862:7;35844:11;:26::i;46954:524::-;47110:16;47171:3;:10;47152:8;:15;:29;47144:83;;;;-1:-1:-1;;;47144:83:0;;24324:2:1;47144:83:0;;;24306:21:1;24363:2;24343:18;;;24336:30;24402:34;24382:18;;;24375:62;-1:-1:-1;;;24453:18:1;;;24446:39;24502:19;;47144:83:0;24296:231:1;47144:83:0;47240:30;47287:8;:15;-1:-1:-1;;;;;47273:30:0;;;;;-1:-1:-1;;;47273:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47273:30:0;;47240:63;;47321:9;47316:122;47340:8;:15;47336:1;:19;47316:122;;;47396:30;47406:8;47415:1;47406:11;;;;;;-1:-1:-1;;;47406:11:0;;;;;;;;;;;;;;;47419:3;47423:1;47419:6;;;;;;-1:-1:-1;;;47419:6:0;;;;;;;;;;;;;;;47396:9;:30::i;:::-;47377:13;47391:1;47377:16;;;;;;-1:-1:-1;;;47377:16:0;;;;;;;;;;;;;;;;;;:49;47357:3;;;:::i;:::-;;;47316:122;;;-1:-1:-1;47457:13:0;46954:524;-1:-1:-1;;;46954:524:0:o;66078:1241::-;66193:10;;66140:12;;:49;;-1:-1:-1;;;66140:49:0;;66163:10;66140:49;;;13171:34:1;66183:4:0;13221:18:1;;;13214:43;-1:-1:-1;;;;;66140:12:0;;;;:22;;13106:18:1;;66140:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:63;;66132:106;;;;-1:-1:-1;;;66132:106:0;;20112:2:1;66132:106:0;;;20094:21:1;20151:2;20131:18;;;20124:30;20190:32;20170:18;;;20163:60;20240:18;;66132:106:0;20084:180:1;66132:106:0;66267:11;;66255:9;;:23;66247:46;;;;-1:-1:-1;;;66247:46:0;;22111:2:1;66247:46:0;;;22093:21:1;22150:2;22130:18;;;22123:30;-1:-1:-1;;;22169:18:1;;;22162:40;22219:18;;66247:46:0;22083:160:1;66247:46:0;66304:18;66325:32;66353:3;66325:23;66340:7;;66325:10;;:14;;:23;;;;:::i;:32::-;66304:53;;66368:18;66402:10;66389;;:23;;;;:::i;:::-;66464:11;;66423:12;;66368:44;;-1:-1:-1;66423:65:0;;-1:-1:-1;;;;;66423:12:0;;;;66453:10;;66464:11;66368:44;66423:29;:65::i;:::-;66548:12;;66499:75;;-1:-1:-1;;;;;66548:12:0;66529:10;66548:12;66563:10;66499:29;:75::i;:::-;66585:13;66708:3;66637:5;;66644:6;;;;;;;;;-1:-1:-1;;;;;66644:6:0;-1:-1:-1;;;;;66644:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66659:15;66676:16;66694:10;66620:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66610:96;;;;;;66601:106;;:110;;;;:::i;:::-;66722:5;:8;;66585:126;;-1:-1:-1;66722:5:0;:8;;;:::i;:::-;;;;-1:-1:-1;;66741:9:0;:12;;;:9;:12;;;:::i;:::-;;;;-1:-1:-1;;66789:2:0;66781:10;;66764:102;;66804:27;66810:10;66822:1;66825;66804:27;;;;;;;;;;;;:5;:27::i;:::-;66842:6;66849:1;66842:9;;;;;;-1:-1:-1;;;66842:9:0;;;;;;;;;;;;;;;;;:12;;;;;;:::i;:::-;;;;;;66764:102;66888:2;66880:5;:10;;:24;;;;;66902:2;66894:5;:10;;66880:24;66876:104;;;66917:27;66923:10;66935:1;66938;66917:27;;;;;;;;;;;;:5;:27::i;:::-;66956:6;66963:1;66956:9;;;;;;-1:-1:-1;;;66956:9:0;;;;;;;;;;;;;;;;;:12;;;;;;:::i;:::-;;;;;;66876:104;67002:2;66994:5;:10;;:24;;;;;67016:2;67008:5;:10;;66994:24;66990:104;;;67031:27;67037:10;67049:1;67052;67031:27;;;;;;;;;;;;:5;:27::i;:::-;67070:6;67077:1;67070:9;;;;;;-1:-1:-1;;;67070:9:0;;;;;;;;;;;;;;;;;:12;;;;;;:::i;:::-;;;;;;66990:104;67116:2;67108:5;:10;;:24;;;;;67130:2;67122:5;:10;;67108:24;67104:104;;;67145:27;67151:10;67163:1;67166;67145:27;;;;;;;;;;;;:5;:27::i;:::-;67184:6;67191:1;67184:9;;;;;;-1:-1:-1;;;67184:9:0;;;;;;;;;;;;;;;;;:12;;;;;;:::i;:::-;;;;;;67104:104;67223:5;67232:2;67223:11;67219:91;;;67247:27;67253:10;67265:1;67268;67247:27;;;;;;;;;;;;:5;:27::i;:::-;67286:6;67293:1;67286:9;;;;;;-1:-1:-1;;;67286:9:0;;;;;;;;;;;;;;;;;:12;;;;;;:::i;:::-;;;;;;66078:1241;;;:::o;71453:351::-;71566:10;71504:7;71558:19;;;:7;:19;;;;;71611:13;;;;71504:7;;71611:33;;71639:4;;71611:23;;71629:4;71611:17;:23::i;:33::-;71588:56;;71655:22;71696:67;71750:12;71697:47;71717:6;:26;;;71697:15;:19;;:47;;;;:::i;:::-;71696:53;;:67::i;:::-;71680:6;:13;;;:83;;;;:::i;:::-;71655:108;71453:351;-1:-1:-1;;;;71453:351:0:o;62647:353::-;-1:-1:-1;;;;;62812:23:0;;684:10;62812:23;;:66;;-1:-1:-1;62839:39:0;62856:7;684:10;47778:168;:::i;62839:39::-;62790:157;;;;-1:-1:-1;;;62790:157:0;;;;;;;:::i;:::-;62960:32;62971:7;62980:3;62985:6;62960:10;:32::i;67725:129::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;-1:-1:-1;67815:12:0::1;:31:::0;;-1:-1:-1;;;;;;67815:31:0::1;-1:-1:-1::0;;;;;67815:31:0;;;::::1;::::0;;;::::1;::::0;;67725:129::o;63902:41::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63902:41:0;:::o;67330:118::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;-1:-1:-1;67421:11:0::1;:20:::0;67330:118::o;65240:128::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;65328:32:::1;63430:24;65352:7;65328:10;:32::i;67992:1376::-:0;68091:1;68071:17;:21;68062:31;;;;;;68116:1;68113:2;:4;68104:35;;;;-1:-1:-1;;;68104:35:0;;22450:2:1;68104:35:0;;;22432:21:1;22489:2;22469:18;;;22462:30;-1:-1:-1;;;22508:18:1;;;22501:47;22565:18;;68104:35:0;22422:167:1;68104:35:0;68187:1;68159:24;68169:10;68180:2;68159:9;:24::i;:::-;:29;;68150:58;;;;-1:-1:-1;;;68150:58:0;;25905:2:1;68150:58:0;;;25887:21:1;25944:2;25924:18;;;25917:30;-1:-1:-1;;;25963:18:1;;;25956:45;26018:18;;68150:58:0;25877:165:1;68150:58:0;68229:12;68351:3;68280:5;;68287:6;;;;;;;;;-1:-1:-1;;;;;68287:6:0;-1:-1:-1;;;;;68287:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68302:15;68319:16;68337:10;68263:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68253:96;;;;;;68244:106;;:110;;;;:::i;:::-;68229:125;;68375:24;68402:46;68424:23;;68402:17;:21;;:46;;;;:::i;:::-;68375:73;-1:-1:-1;68459:10:0;68472:35;68504:2;68473:25;:17;68504:2;68473:21;:25::i;:::-;68472:31;;:35::i;:::-;68459:48;-1:-1:-1;68459:48:0;68569:1;68566:4;;68562:585;;;68599:16;68591:4;:24;68587:267;;68631:22;68637:10;68648:2;68651:1;68631:5;:22::i;:::-;68667:39;68673:10;68684:1;68686:19;68667:5;:39::i;:::-;68720:27;68726:10;68737:4;:2;68740:1;68737:4;:::i;:::-;68742:1;68720:27;;;;;;;;;;;;:5;:27::i;:::-;68822:4;:2;68825:1;68822:4;:::i;:::-;68766:74;;68796:10;;68766:74;;;;;68587:267;68879:16;68872:4;:23;68868:266;;;68911:22;68917:10;68928:2;68931:1;68911:5;:22::i;:::-;68947:39;68953:10;68964:1;68966:19;68947:5;:39::i;:::-;69000:27;69006:10;69017:4;:2;69020:1;69017:4;:::i;69000:27::-;69102:4;:2;69105:1;69102:4;:::i;:::-;69046:74;;69076:10;;69046:74;;;;;68868:266;69163:2;69167:1;69163:5;69159:193;;;69184:22;69190:10;69201:2;69204:1;69184:5;:22::i;:::-;69220:27;69226:10;69237:4;:2;69240:1;69237:4;:::i;69220:27::-;69322:4;:2;69325:1;69322:4;:::i;:::-;69266:74;;69296:10;;69266:74;;;;;67992:1376;;;;;;:::o;32679:147::-;32765:4;32789:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;32789:29:0;;;;;;;;;;;;;;;32679:147::o;63612:28::-;;;;;;;:::i;47551:155::-;47646:52;684:10;47679:8;47689;47646:18;:52::i;67581:136::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;-1:-1:-1;67677:23:0::1;:32:::0;67581:136::o;69605:388::-;18752:1;19350:7;;:19;;19342:63;;;;-1:-1:-1;;;19342:63:0;;25545:2:1;19342:63:0;;;25527:21:1;25584:2;25564:18;;;25557:30;25623:33;25603:18;;;25596:61;25674:18;;19342:63:0;25517:181:1;19342:63:0;18752:1;19483:7;:18;;;69677:12:::1;::::0;:34:::1;::::0;-1:-1:-1;;;69677:34:0;;69700:10:::1;69677:34:::0;;::::1;12897:51:1::0;;;;69713:6:0;;-1:-1:-1;;;;;69677:12:0;;::::1;::::0;:22:::1;::::0;12870:18:1;;69677:34:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;;69669:51;;;::::0;::::1;;69733:19;:17;:19::i;:::-;69797:10;69765:21;69789:19:::0;;;:7:::1;:19;::::0;;;;69845:15:::1;69819:41:::0;;69887:13:::1;::::0;::::1;::::0;:25:::1;::::0;69905:6;69887:17:::1;:25::i;:::-;69871:13;::::0;::::1;:41:::0;69923:12:::1;::::0;:62:::1;::::0;-1:-1:-1;;;;;69923:12:0::1;69953:10;69972:4;69978:6:::0;69923:29:::1;:62::i;:::-;-1:-1:-1::0;;18708:1:0;19662:7;:22;69605:388::o;69429:168::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;-1:-1:-1;69544:19:0::1;:45:::0;69429:168::o;35004:149::-;34293:7;34320:12;;;:6;:12;;;;;:22;;;32275:16;32286:4;32275:10;:16::i;:::-;35119:26:::1;35131:4;35137:7;35119:11;:26::i;48018:401::-:0;-1:-1:-1;;;;;48226:20:0;;684:10;48226:20;;:60;;-1:-1:-1;48250:36:0;48267:4;684:10;47778:168;:::i;48250:36::-;48204:151;;;;-1:-1:-1;;;48204:151:0;;;;;;;:::i;:::-;48366:45;48384:4;48390:2;48394;48398:6;48406:4;48366:17;:45::i;67461:112::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;-1:-1:-1;67546:10:0::1;:19:::0;67461:112::o;62318:321::-;-1:-1:-1;;;;;62458:23:0;;684:10;62458:23;;:66;;-1:-1:-1;62485:39:0;62502:7;684:10;47778:168;:::i;62485:39::-;62436:157;;;;-1:-1:-1;;;62436:157:0;;;;;;;:::i;:::-;62606:25;62612:7;62621:2;62625:5;62606;:25::i;67866:118::-;31829:4;32275:16;31829:4;32275:10;:16::i;:::-;-1:-1:-1;67956:7:0::1;:20:::0;67866:118::o;3880:326::-;-1:-1:-1;;;;;4175:19:0;;:23;;;3880:326::o;32383:204::-;32468:4;-1:-1:-1;;;;;;32492:47:0;;-1:-1:-1;;;32492:47:0;;:87;;;32543:36;32567:11;32543:23;:36::i;33130:105::-;33197:30;33208:4;684:10;33197;:30::i;:::-;33130:105;:::o;52724:88::-;52791:13;;;;:4;;:13;;;;;:::i;14441:98::-;14499:7;14526:5;14530:1;14526;:5;:::i;:::-;14519:12;14441:98;-1:-1:-1;;;14441:98:0:o;14840:::-;14898:7;14925:5;14929:1;14925;:5;:::i;14084:98::-;14142:7;14169:5;14173:1;14169;:5;:::i;22473:211::-;22617:58;;-1:-1:-1;;;;;15236:32:1;;22617:58:0;;;15218:51:1;15285:18;;;15278:34;;;22590:86:0;;22610:5;;-1:-1:-1;;;22640:23:0;15191:18:1;;22617:58:0;;;;-1:-1:-1;;22617:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;22617:58:0;-1:-1:-1;;;;;;22617:58:0;;;;;;;;;;22590:19;:86::i;50734:1146::-;50961:7;:14;50947:3;:10;:28;50939:81;;;;-1:-1:-1;;;50939:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51039:16:0;;51031:66;;;;-1:-1:-1;;;51031:66:0;;;;;;;:::i;:::-;684:10;51110:16;51227:421;51251:3;:10;51247:1;:14;51227:421;;;51283:10;51296:3;51300:1;51296:6;;;;;;-1:-1:-1;;;51296:6:0;;;;;;;;;;;;;;;51283:19;;51317:14;51334:7;51342:1;51334:10;;;;;;-1:-1:-1;;;51334:10:0;;;;;;;;;;;;;;;;;;;;51361:19;51383:13;;;;;;;;;;-1:-1:-1;;;;;51383:19:0;;;;;;;;;;;;51334:10;;-1:-1:-1;51425:21:0;;;;51417:76;;;;-1:-1:-1;;;51417:76:0;;;;;;;:::i;:::-;51537:9;:13;;;;;;;;;;;-1:-1:-1;;;;;51537:19:0;;;;;;;;;;51559:20;;;51537:42;;51609:17;;;;;;;:27;;51559:20;;51537:9;51609:27;;51559:20;;51609:27;:::i;:::-;;;;;;;;51227:421;;;51263:3;;;;:::i;:::-;;;51227:421;;;;51695:2;-1:-1:-1;;;;;51665:47:0;51689:4;-1:-1:-1;;;;;51665:47:0;51679:8;-1:-1:-1;;;;;51665:47:0;;51699:3;51704:7;51665:47;;;;;;;:::i;:::-;;;;;;;;51797:75;51833:8;51843:4;51849:2;51853:3;51858:7;51867:4;51797:35;:75::i;37161:238::-;37245:22;37253:4;37259:7;37245;:22::i;:::-;37240:152;;37284:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;37284:29:0;;;;;;;;;:36;;-1:-1:-1;;37284:36:0;37316:4;37284:36;;;37367:12;684:10;;604:98;37367:12;-1:-1:-1;;;;;37340:40:0;37358:7;-1:-1:-1;;;;;37340:40:0;37352:4;37340:40;;;;;;;;;;37161:238;;:::o;13703:98::-;13761:7;13788:5;13792:1;13788;:5;:::i;53198:729::-;-1:-1:-1;;;;;53351:16:0;;53343:62;;;;-1:-1:-1;;;53343:62:0;;25143:2:1;53343:62:0;;;25125:21:1;25182:2;25162:18;;;25155:30;25221:34;25201:18;;;25194:62;-1:-1:-1;;;25272:18:1;;;25265:31;25313:19;;53343:62:0;25115:223:1;53343:62:0;684:10;53418:16;53483:21;53501:2;53483:17;:21::i;:::-;53460:44;;53515:24;53542:25;53560:6;53542:17;:25::i;:::-;53515:52;;53659:9;:13;;;;;;;;;;;-1:-1:-1;;;;;53659:17:0;;;;;;;;;:27;;53680:6;;53659:9;:27;;53680:6;;53659:27;:::i;:::-;;;;-1:-1:-1;;53702:52:0;;;26819:25:1;;;26875:2;26860:18;;26853:34;;;-1:-1:-1;;;;;53702:52:0;;;;53735:1;;53702:52;;;;;;26792:18:1;53702:52:0;;;;;;;53845:74;53876:8;53894:1;53898:2;53902;53906:6;53914:4;53845:30;:74::i;:::-;53198:729;;;;;;;:::o;71073:372::-;71152:10;71120:21;71144:19;;;:7;:19;;;;;71197:13;;;;71144:19;;71120:21;71197:33;;71225:4;;71197:23;;71215:4;71197:17;:23::i;:33::-;71174:56;;71241:14;71258:67;71312:12;71259:47;71279:6;:26;;;71259:15;:19;;:47;;;;:::i;71258:67::-;71241:84;;71369:6;71353;:13;;;:22;;;;:::i;:::-;71337:13;;;:38;-1:-1:-1;;71418:15:0;71389:26;;;;:44;71073:372::o;15405:98::-;15463:7;15490:5;15494:1;15490;:5;:::i;37531:239::-;37615:22;37623:4;37629:7;37615;:22::i;:::-;37611:152;;;37686:5;37654:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;37654:29:0;;;;;;;;;;:37;;-1:-1:-1;;37654:37:0;;;37711:40;684:10;;37654:12;;37711:40;;37686:5;37711:40;37531:239;;:::o;22692:248::-;22863:68;;-1:-1:-1;;;;;14357:15:1;;;22863:68:0;;;14339:34:1;14409:15;;14389:18;;;14382:43;14441:18;;;14434:34;;;22836:96:0;;22856:5;;-1:-1:-1;;;22886:27:0;14274:18:1;;22863:68:0;14256:218:1;22836:96:0;22692:248;;;;:::o;56499:969::-;-1:-1:-1;;;;;56651:18:0;;56643:66;;;;-1:-1:-1;;;56643:66:0;;;;;;;:::i;:::-;56742:7;:14;56728:3;:10;:28;56720:81;;;;-1:-1:-1;;;56720:81:0;;;;;;;:::i;:::-;56858:66;;;;;;;;;56814:16;56858:66;;;;684:10;;56937:373;56961:3;:10;56957:1;:14;56937:373;;;56993:10;57006:3;57010:1;57006:6;;;;;;-1:-1:-1;;;57006:6:0;;;;;;;;;;;;;;;56993:19;;57027:14;57044:7;57052:1;57044:10;;;;;;-1:-1:-1;;;57044:10:0;;;;;;;;;;;;;;;;;;;;57071:19;57093:13;;;;;;;;;;-1:-1:-1;;;;;57093:19:0;;;;;;;;;;;;57044:10;;-1:-1:-1;57135:21:0;;;;57127:70;;;;-1:-1:-1;;;57127:70:0;;;;;;;:::i;:::-;57241:9;:13;;;;;;;;;;;-1:-1:-1;;;;;57241:19:0;;;;;;;;;;57263:20;;57241:42;;56973:3;;;;:::i;:::-;;;;56937:373;;;;57365:1;-1:-1:-1;;;;;57327:55:0;57351:4;-1:-1:-1;;;;;57327:55:0;57341:8;-1:-1:-1;;;;;57327:55:0;;57369:3;57374:7;57327:55;;;;;;;:::i;:::-;;;;;;;;57395:65;;;;;;;;;57439:1;57395:65;;;65376:694;55441:808;-1:-1:-1;;;;;55568:18:0;;55560:66;;;;-1:-1:-1;;;55560:66:0;;;;;;;:::i;:::-;684:10;55639:16;55704:21;55722:2;55704:17;:21::i;:::-;55681:44;;55736:24;55763:25;55781:6;55763:17;:25::i;:::-;55801:66;;;;;;;;;-1:-1:-1;55801:66:0;;;;55902:13;;;;;;;;;-1:-1:-1;;;;;55902:19:0;;;;;;;;55736:52;;-1:-1:-1;55940:21:0;;;;55932:70;;;;-1:-1:-1;;;55932:70:0;;;;;;;:::i;:::-;56038:9;:13;;;;;;;;;;;-1:-1:-1;;;;;56038:19:0;;;;;;;;;;;;56060:20;;;56038:42;;56109:54;;26819:25:1;;;26860:18;;;26853:34;;;56038:19:0;;56109:54;;;;;;26792:18:1;56109:54:0;;;;;;;56176:65;;;;;;;;;56220:1;56176:65;;;65376:694;57611:331;57766:8;-1:-1:-1;;;;;57757:17:0;:5;-1:-1:-1;;;;;57757:17:0;;;57749:71;;;;-1:-1:-1;;;57749:71:0;;23503:2:1;57749:71:0;;;23485:21:1;23542:2;23522:18;;;23515:30;23581:34;23561:18;;;23554:62;-1:-1:-1;;;23632:18:1;;;23625:39;23681:19;;57749:71:0;23475:231:1;57749:71:0;-1:-1:-1;;;;;57831:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;57831:46:0;;;;;;;;;;57893:41;;16199::1;;;57893::0;;16172:18:1;57893:41:0;;;;;;;57611:331;;;:::o;49402:974::-;-1:-1:-1;;;;;49590:16:0;;49582:66;;;;-1:-1:-1;;;49582:66:0;;;;;;;:::i;:::-;684:10;49661:16;49726:21;49744:2;49726:17;:21::i;:::-;49703:44;;49758:24;49785:25;49803:6;49785:17;:25::i;:::-;49758:52;;49896:19;49918:13;;;;;;;;;;;-1:-1:-1;;;;;49918:19:0;;;;;;;;;;49956:21;;;;49948:76;;;;-1:-1:-1;;;49948:76:0;;;;;;;:::i;:::-;50060:9;:13;;;;;;;;;;;-1:-1:-1;;;;;50060:19:0;;;;;;;;;;50082:20;;;50060:42;;50124:17;;;;;;;:27;;50082:20;;50060:9;50124:27;;50082:20;;50124:27;:::i;:::-;;;;-1:-1:-1;;50169:46:0;;;26819:25:1;;;26875:2;26860:18;;26853:34;;;-1:-1:-1;;;;;50169:46:0;;;;;;;;;;;;;;26792:18:1;50169:46:0;;;;;;;50300:68;50331:8;50341:4;50347:2;50351;50355:6;50363:4;50300:30;:68::i;:::-;49402:974;;;;;;;;;:::o;45581:310::-;45683:4;-1:-1:-1;;;;;;45720:41:0;;-1:-1:-1;;;45720:41:0;;:110;;-1:-1:-1;;;;;;;45778:52:0;;-1:-1:-1;;;45778:52:0;45720:110;:163;;;-1:-1:-1;;;;;;;;;;27043:40:0;;;45847:36;26934:157;33525:505;33614:22;33622:4;33628:7;33614;:22::i;:::-;33609:414;;33802:41;33830:7;-1:-1:-1;;;;;33802:41:0;33840:2;33802:19;:41::i;:::-;33916:38;33944:4;33951:2;33916:19;:38::i;:::-;33707:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;33707:270:0;;;;;;;;;;-1:-1:-1;;;33653:358:0;;;;;;;:::i;25046:716::-;25470:23;25496:69;25524:4;25496:69;;;;;;;;;;;;;;;;;25504:5;-1:-1:-1;;;;;25496:27:0;;;:69;;;;;:::i;:::-;25580:17;;25470:95;;-1:-1:-1;25580:21:0;25576:179;;25677:10;25666:30;;;;;;;;;;;;:::i;:::-;25658:85;;;;-1:-1:-1;;;25658:85:0;;23913:2:1;25658:85:0;;;23895:21:1;23952:2;23932:18;;;23925:30;23991:34;23971:18;;;23964:62;-1:-1:-1;;;24042:18:1;;;24035:40;24092:19;;25658:85:0;23885:232:1;61056:813:0;-1:-1:-1;;;;;61296:13:0;;4175:19;:23;61292:570;;61332:79;;-1:-1:-1;;;61332:79:0;;-1:-1:-1;;;;;61332:43:0;;;;;:79;;61376:8;;61386:4;;61392:3;;61397:7;;61406:4;;61332:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61332:79:0;;;;;;;;-1:-1:-1;;61332:79:0;;;;;;;;;;;;:::i;:::-;;;61328:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;61724:6;61717:14;;-1:-1:-1;;;61717:14:0;;;;;;;;:::i;61328:523::-;;;61773:62;;-1:-1:-1;;;61773:62:0;;17288:2:1;61773:62:0;;;17270:21:1;17327:2;17307:18;;;17300:30;17366:34;17346:18;;;17339:62;-1:-1:-1;;;17417:18:1;;;17410:50;17477:19;;61773:62:0;17260:242:1;61328:523:0;-1:-1:-1;;;;;;61493:60:0;;-1:-1:-1;;;61493:60:0;61489:159;;61578:50;;-1:-1:-1;;;61578:50:0;;;;;;;:::i;61877:198::-;61997:16;;;62011:1;61997:16;;;;;;;;;61943;;61972:22;;61997:16;;;;;;;;;;;;-1:-1:-1;61997:16:0;61972:41;;62035:7;62024:5;62030:1;62024:8;;;;;;-1:-1:-1;;;62024:8:0;;;;;;;;;;;;;;;;;;:18;62062:5;61877:198;-1:-1:-1;;61877:198:0:o;60304:744::-;-1:-1:-1;;;;;60519:13:0;;4175:19;:23;60515:526;;60555:72;;-1:-1:-1;;;60555:72:0;;-1:-1:-1;;;;;60555:38:0;;;;;:72;;60594:8;;60604:4;;60610:2;;60614:6;;60622:4;;60555:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60555:72:0;;;;;;;;-1:-1:-1;;60555:72:0;;;;;;;;;;;;:::i;:::-;;;60551:479;;;;:::i;:::-;-1:-1:-1;;;;;;60677:55:0;;-1:-1:-1;;;60677:55:0;60673:154;;60757:50;;-1:-1:-1;;;60757:50:0;;;;;;;:::i;2345:451::-;2420:13;2446:19;2478:10;2482:6;2478:1;:10;:::i;:::-;:14;;2491:1;2478:14;:::i;:::-;-1:-1:-1;;;;;2468:25:0;;;;;-1:-1:-1;;;2468:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2468:25:0;;2446:47;;-1:-1:-1;;;2504:6:0;2511:1;2504:9;;;;;;-1:-1:-1;;;2504:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;2504:15:0;;;;;;;;;-1:-1:-1;;;2530:6:0;2537:1;2530:9;;;;;;-1:-1:-1;;;2530:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;2530:15:0;;;;;;;;-1:-1:-1;2561:9:0;2573:10;2577:6;2573:1;:10;:::i;:::-;:14;;2586:1;2573:14;:::i;:::-;2561:26;;2556:135;2593:1;2589;:5;2556:135;;;-1:-1:-1;;;2641:5:0;2649:3;2641:11;2628:25;;;;;-1:-1:-1;;;2628:25:0;;;;;;;;;;;;2616:6;2623:1;2616:9;;;;;;-1:-1:-1;;;2616:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;2616:37:0;;;;;;;;-1:-1:-1;2678:1:0;2668:11;;;;;2596:3;;;:::i;:::-;;;2556:135;;;-1:-1:-1;2709:10:0;;2701:55;;;;-1:-1:-1;;;2701:55:0;;17709:2:1;2701:55:0;;;17691:21:1;;;17728:18;;;17721:30;17787:34;17767:18;;;17760:62;17839:18;;2701:55:0;17681:182:1;6625:229:0;6762:12;6794:52;6816:6;6824:4;6830:1;6833:12;6762;-1:-1:-1;;;;;4175:19:0;;;8032:60;;;;-1:-1:-1;;;8032:60:0;;22796:2:1;8032:60:0;;;22778:21:1;22835:2;22815:18;;;22808:30;22874:31;22854:18;;;22847:59;22923:18;;8032:60:0;22768:179:1;8032:60:0;8106:12;8120:23;8147:6;-1:-1:-1;;;;;8147:11:0;8166:5;8173:4;8147:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8105:73;;;;8196:51;8213:7;8222:10;8234:12;8196:16;:51::i;:::-;8189:58;7745:510;-1:-1:-1;;;;;;;7745:510:0:o;10431:712::-;10581:12;10610:7;10606:530;;;-1:-1:-1;10641:10:0;10634:17;;10606:530;10755:17;;:21;10751:374;;10953:10;10947:17;11014:15;11001:10;10997:2;10993:19;10986:44;10901:148;11096:12;11089:20;;-1:-1:-1;;;11089:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:2;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:2;;;369:1;366;359:12;328:2;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;88:394;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:2;;650:1;647;640:12;584:2;536:124;;;:::o;665:755::-;719:5;772:3;765:4;757:6;753:17;749:27;739:2;;794:5;787;780:20;739:2;834:6;821:20;860:4;883:43;923:2;883:43;:::i;:::-;955:2;949:9;967:31;995:2;987:6;967:31;:::i;:::-;1033:18;;;1067:15;;;;-1:-1:-1;1102:15:1;;;1152:1;1148:10;;;1136:23;;1132:32;;1129:41;-1:-1:-1;1126:2:1;;;1187:5;1180;1173:20;1126:2;1213:5;1227:163;1241:2;1238:1;1235:9;1227:163;;;1298:17;;1286:30;;1336:12;;;;1368;;;;1259:1;1252:9;1227:163;;;-1:-1:-1;1408:6:1;;729:691;-1:-1:-1;;;;;;;729:691:1:o;1425:228::-;1467:5;1520:3;1513:4;1505:6;1501:17;1497:27;1487:2;;1542:5;1535;1528:20;1487:2;1568:79;1643:3;1634:6;1621:20;1614:4;1606:6;1602:17;1568:79;:::i;1658:196::-;1717:6;1770:2;1758:9;1749:7;1745:23;1741:32;1738:2;;;1791:6;1783;1776:22;1738:2;1819:29;1838:9;1819:29;:::i;1859:270::-;1927:6;1935;1988:2;1976:9;1967:7;1963:23;1959:32;1956:2;;;2009:6;2001;1994:22;1956:2;2037:29;2056:9;2037:29;:::i;:::-;2027:39;;2085:38;2119:2;2108:9;2104:18;2085:38;:::i;:::-;2075:48;;1946:183;;;;;:::o;2134:983::-;2288:6;2296;2304;2312;2320;2373:3;2361:9;2352:7;2348:23;2344:33;2341:2;;;2395:6;2387;2380:22;2341:2;2423:29;2442:9;2423:29;:::i;:::-;2413:39;;2471:38;2505:2;2494:9;2490:18;2471:38;:::i;:::-;2461:48;;2560:2;2549:9;2545:18;2532:32;-1:-1:-1;;;;;2624:2:1;2616:6;2613:14;2610:2;;;2645:6;2637;2630:22;2610:2;2673:61;2726:7;2717:6;2706:9;2702:22;2673:61;:::i;:::-;2663:71;;2787:2;2776:9;2772:18;2759:32;2743:48;;2816:2;2806:8;2803:16;2800:2;;;2837:6;2829;2822:22;2800:2;2865:63;2920:7;2909:8;2898:9;2894:24;2865:63;:::i;:::-;2855:73;;2981:3;2970:9;2966:19;2953:33;2937:49;;3011:2;3001:8;2998:16;2995:2;;;3032:6;3024;3017:22;2995:2;;3060:51;3103:7;3092:8;3081:9;3077:24;3060:51;:::i;:::-;3050:61;;;2331:786;;;;;;;;:::o;3122:927::-;3228:6;3236;3244;3252;3260;3268;3321:3;3309:9;3300:7;3296:23;3292:33;3289:2;;;3343:6;3335;3328:22;3289:2;3371:29;3390:9;3371:29;:::i;:::-;3361:39;;3419:38;3453:2;3442:9;3438:18;3419:38;:::i;:::-;3409:48;;3504:2;3493:9;3489:18;3476:32;3466:42;;3555:2;3544:9;3540:18;3527:32;3517:42;;3610:3;3599:9;3595:19;3582:33;-1:-1:-1;;;;;3675:2:1;3667:6;3664:14;3661:2;;;3696:6;3688;3681:22;3661:2;3739:6;3728:9;3724:22;3714:32;;3784:7;3777:4;3773:2;3769:13;3765:27;3755:2;;3811:6;3803;3796:22;3755:2;3856;3843:16;3882:2;3874:6;3871:14;3868:2;;;3903:6;3895;3888:22;3868:2;3953:7;3948:2;3939:6;3935:2;3931:15;3927:24;3924:37;3921:2;;;3979:6;3971;3964:22;3921:2;4015;4011;4007:11;3997:21;;4037:6;4027:16;;;;;3279:770;;;;;;;;:::o;4054:626::-;4158:6;4166;4174;4182;4190;4243:3;4231:9;4222:7;4218:23;4214:33;4211:2;;;4265:6;4257;4250:22;4211:2;4293:29;4312:9;4293:29;:::i;:::-;4283:39;;4341:38;4375:2;4364:9;4360:18;4341:38;:::i;:::-;4331:48;;4426:2;4415:9;4411:18;4398:32;4388:42;;4477:2;4466:9;4462:18;4449:32;4439:42;;4532:3;4521:9;4517:19;4504:33;-1:-1:-1;;;;;4552:6:1;4549:30;4546:2;;;4597:6;4589;4582:22;4546:2;4625:49;4666:7;4657:6;4646:9;4642:22;4625:49;:::i;4685:699::-;4812:6;4820;4828;4881:2;4869:9;4860:7;4856:23;4852:32;4849:2;;;4902:6;4894;4887:22;4849:2;4930:29;4949:9;4930:29;:::i;:::-;4920:39;;5010:2;4999:9;4995:18;4982:32;-1:-1:-1;;;;;5074:2:1;5066:6;5063:14;5060:2;;;5095:6;5087;5080:22;5060:2;5123:61;5176:7;5167:6;5156:9;5152:22;5123:61;:::i;:::-;5113:71;;5237:2;5226:9;5222:18;5209:32;5193:48;;5266:2;5256:8;5253:16;5250:2;;;5287:6;5279;5272:22;5250:2;;5315:63;5370:7;5359:8;5348:9;5344:24;5315:63;:::i;:::-;5305:73;;;4839:545;;;;;:::o;5389:325::-;5454:6;5462;5515:2;5503:9;5494:7;5490:23;5486:32;5483:2;;;5536:6;5528;5521:22;5483:2;5564:29;5583:9;5564:29;:::i;:::-;5554:39;;5643:2;5632:9;5628:18;5615:32;5656:28;5678:5;5656:28;:::i;:::-;5703:5;5693:15;;;5473:241;;;;;:::o;5719:264::-;5787:6;5795;5848:2;5836:9;5827:7;5823:23;5819:32;5816:2;;;5869:6;5861;5854:22;5816:2;5897:29;5916:9;5897:29;:::i;:::-;5887:39;5973:2;5958:18;;;;5945:32;;-1:-1:-1;;;5806:177:1:o;5988:482::-;6074:6;6082;6090;6143:2;6131:9;6122:7;6118:23;6114:32;6111:2;;;6164:6;6156;6149:22;6111:2;6192:29;6211:9;6192:29;:::i;:::-;6182:39;;6268:2;6257:9;6253:18;6240:32;6230:42;;6323:2;6312:9;6308:18;6295:32;-1:-1:-1;;;;;6342:6:1;6339:30;6336:2;;;6387:6;6379;6372:22;6336:2;6415:49;6456:7;6447:6;6436:9;6432:22;6415:49;:::i;6475:332::-;6552:6;6560;6568;6621:2;6609:9;6600:7;6596:23;6592:32;6589:2;;;6642:6;6634;6627:22;6589:2;6670:29;6689:9;6670:29;:::i;:::-;6660:39;6746:2;6731:18;;6718:32;;-1:-1:-1;6797:2:1;6782:18;;;6769:32;;6579:228;-1:-1:-1;;;6579:228:1:o;6812:1274::-;6930:6;6938;6991:2;6979:9;6970:7;6966:23;6962:32;6959:2;;;7012:6;7004;6997:22;6959:2;7057:9;7044:23;-1:-1:-1;;;;;7127:2:1;7119:6;7116:14;7113:2;;;7148:6;7140;7133:22;7113:2;7191:6;7180:9;7176:22;7166:32;;7236:7;7229:4;7225:2;7221:13;7217:27;7207:2;;7263:6;7255;7248:22;7207:2;7304;7291:16;7326:4;7349:43;7389:2;7349:43;:::i;:::-;7421:2;7415:9;7433:31;7461:2;7453:6;7433:31;:::i;:::-;7499:18;;;7533:15;;;;-1:-1:-1;7568:11:1;;;7610:1;7606:10;;;7598:19;;7594:28;;7591:41;-1:-1:-1;7588:2:1;;;7650:6;7642;7635:22;7588:2;7677:6;7668:15;;7692:169;7706:2;7703:1;7700:9;7692:169;;;7763:23;7782:3;7763:23;:::i;:::-;7751:36;;7724:1;7717:9;;;;;7807:12;;;;7839;;7692:169;;;-1:-1:-1;7880:6:1;-1:-1:-1;;7924:18:1;;7911:32;;-1:-1:-1;;7955:16:1;;;7952:2;;;7989:6;7981;7974:22;7952:2;;8017:63;8072:7;8061:8;8050:9;8046:24;8017:63;:::i;:::-;8007:73;;;6949:1137;;;;;:::o;8091:255::-;8158:6;8211:2;8199:9;8190:7;8186:23;8182:32;8179:2;;;8232:6;8224;8217:22;8179:2;8269:9;8263:16;8288:28;8310:5;8288:28;:::i;8351:190::-;8410:6;8463:2;8451:9;8442:7;8438:23;8434:32;8431:2;;;8484:6;8476;8469:22;8431:2;-1:-1:-1;8512:23:1;;8421:120;-1:-1:-1;8421:120:1:o;8546:264::-;8614:6;8622;8675:2;8663:9;8654:7;8650:23;8646:32;8643:2;;;8696:6;8688;8681:22;8643:2;8737:9;8724:23;8714:33;;8766:38;8800:2;8789:9;8785:18;8766:38;:::i;8815:255::-;8873:6;8926:2;8914:9;8905:7;8901:23;8897:32;8894:2;;;8947:6;8939;8932:22;8894:2;8991:9;8978:23;9010:30;9034:5;9010:30;:::i;9075:259::-;9144:6;9197:2;9185:9;9176:7;9172:23;9168:32;9165:2;;;9218:6;9210;9203:22;9165:2;9255:9;9249:16;9274:30;9298:5;9274:30;:::i;9339:480::-;9408:6;9461:2;9449:9;9440:7;9436:23;9432:32;9429:2;;;9482:6;9474;9467:22;9429:2;9527:9;9514:23;-1:-1:-1;;;;;9552:6:1;9549:30;9546:2;;;9597:6;9589;9582:22;9546:2;9625:22;;9678:4;9670:13;;9666:27;-1:-1:-1;9656:2:1;;9712:6;9704;9697:22;9656:2;9740:73;9805:7;9800:2;9787:16;9782:2;9778;9774:11;9740:73;:::i;10019:194::-;10089:6;10142:2;10130:9;10121:7;10117:23;10113:32;10110:2;;;10163:6;10155;10148:22;10110:2;-1:-1:-1;10191:16:1;;10100:113;-1:-1:-1;10100:113:1:o;10218:258::-;10286:6;10294;10347:2;10335:9;10326:7;10322:23;10318:32;10315:2;;;10368:6;10360;10353:22;10315:2;-1:-1:-1;;10396:23:1;;;10466:2;10451:18;;;10438:32;;-1:-1:-1;10305:171:1:o;10481:437::-;10534:3;10572:5;10566:12;10599:6;10594:3;10587:19;10625:4;10654:2;10649:3;10645:12;10638:19;;10691:2;10684:5;10680:14;10712:3;10724:169;10738:6;10735:1;10732:13;10724:169;;;10799:13;;10787:26;;10833:12;;;;10868:15;;;;10760:1;10753:9;10724:169;;;-1:-1:-1;10909:3:1;;10542:376;-1:-1:-1;;;;;10542:376:1:o;10923:257::-;10964:3;11002:5;10996:12;11029:6;11024:3;11017:19;11045:63;11101:6;11094:4;11089:3;11085:14;11078:4;11071:5;11067:16;11045:63;:::i;:::-;11162:2;11141:15;-1:-1:-1;;11137:29:1;11128:39;;;;11169:4;11124:50;;10972:208;-1:-1:-1;;10972:208:1:o;11185:274::-;11314:3;11352:6;11346:13;11368:53;11414:6;11409:3;11402:4;11394:6;11390:17;11368:53;:::i;:::-;11437:16;;;;;11322:137;-1:-1:-1;;11322:137:1:o;11464:786::-;11875:25;11870:3;11863:38;11845:3;11930:6;11924:13;11946:62;12001:6;11996:2;11991:3;11987:12;11980:4;11972:6;11968:17;11946:62;:::i;:::-;-1:-1:-1;;;12067:2:1;12027:16;;;12059:11;;;12052:40;12117:13;;12139:63;12117:13;12188:2;12180:11;;12173:4;12161:17;;12139:63;:::i;:::-;12222:17;12241:2;12218:26;;11853:397;-1:-1:-1;;;;11853:397:1:o;12255:491::-;12496:19;;;12540:2;12531:12;;12524:28;;;;12577:2;12568:12;;12561:28;;;;12614:2;12605:12;;;12598:28;;;;12661:15;-1:-1:-1;;12657:53:1;12651:3;12642:13;;12635:76;12736:3;12727:13;;12486:260::o;13268:826::-;-1:-1:-1;;;;;13665:15:1;;;13647:34;;13717:15;;13712:2;13697:18;;13690:43;13627:3;13764:2;13749:18;;13742:31;;;13590:4;;13796:57;;13833:19;;13825:6;13796:57;:::i;:::-;13901:9;13893:6;13889:22;13884:2;13873:9;13869:18;13862:50;13935:44;13972:6;13964;13935:44;:::i;:::-;13921:58;;14028:9;14020:6;14016:22;14010:3;13999:9;13995:19;13988:51;14056:32;14081:6;14073;14056:32;:::i;:::-;14048:40;13599:495;-1:-1:-1;;;;;;;;13599:495:1:o;14479:560::-;-1:-1:-1;;;;;14776:15:1;;;14758:34;;14828:15;;14823:2;14808:18;;14801:43;14875:2;14860:18;;14853:34;;;14918:2;14903:18;;14896:34;;;14738:3;14961;14946:19;;14939:32;;;14701:4;;14988:45;;15013:19;;15005:6;14988:45;:::i;15323:261::-;15502:2;15491:9;15484:21;15465:4;15522:56;15574:2;15563:9;15559:18;15551:6;15522:56;:::i;15589:465::-;15846:2;15835:9;15828:21;15809:4;15872:56;15924:2;15913:9;15909:18;15901:6;15872:56;:::i;:::-;15976:9;15968:6;15964:22;15959:2;15948:9;15944:18;15937:50;16004:44;16041:6;16033;16004:44;:::i;:::-;15996:52;15818:236;-1:-1:-1;;;;;15818:236:1:o;16862:219::-;17011:2;17000:9;16993:21;16974:4;17031:44;17071:2;17060:9;17056:18;17048:6;17031:44;:::i;17868:404::-;18070:2;18052:21;;;18109:2;18089:18;;;18082:30;18148:34;18143:2;18128:18;;18121:62;-1:-1:-1;;;18214:2:1;18199:18;;18192:38;18262:3;18247:19;;18042:230::o;18277:400::-;18479:2;18461:21;;;18518:2;18498:18;;;18491:30;18557:34;18552:2;18537:18;;18530:62;-1:-1:-1;;;18623:2:1;18608:18;;18601:34;18667:3;18652:19;;18451:226::o;18682:405::-;18884:2;18866:21;;;18923:2;18903:18;;;18896:30;18962:34;18957:2;18942:18;;18935:62;-1:-1:-1;;;19028:2:1;19013:18;;19006:39;19077:3;19062:19;;18856:231::o;20269:401::-;20471:2;20453:21;;;20510:2;20490:18;;;20483:30;20549:34;20544:2;20529:18;;20522:62;-1:-1:-1;;;20615:2:1;20600:18;;20593:35;20660:3;20645:19;;20443:227::o;21094:399::-;21296:2;21278:21;;;21335:2;21315:18;;;21308:30;21374:34;21369:2;21354:18;;21347:62;-1:-1:-1;;;21440:2:1;21425:18;;21418:33;21483:3;21468:19;;21268:225::o;21498:406::-;21700:2;21682:21;;;21739:2;21719:18;;;21712:30;21778:34;21773:2;21758:18;;21751:62;-1:-1:-1;;;21844:2:1;21829:18;;21822:40;21894:3;21879:19;;21672:232::o;24532:404::-;24734:2;24716:21;;;24773:2;24753:18;;;24746:30;24812:34;24807:2;24792:18;;24785:62;-1:-1:-1;;;24878:2:1;24863:18;;24856:38;24926:3;24911:19;;24706:230::o;27438:183::-;27498:4;-1:-1:-1;;;;;27523:6:1;27520:30;27517:2;;;27553:18;;:::i;:::-;-1:-1:-1;27598:1:1;27594:14;27610:4;27590:25;;27507:114::o;27626:128::-;27666:3;27697:1;27693:6;27690:1;27687:13;27684:2;;;27703:18;;:::i;:::-;-1:-1:-1;27739:9:1;;27674:80::o;27759:120::-;27799:1;27825;27815:2;;27830:18;;:::i;:::-;-1:-1:-1;27864:9:1;;27805:74::o;27884:168::-;27924:7;27990:1;27986;27982:6;27978:14;27975:1;27972:21;27967:1;27960:9;27953:17;27949:45;27946:2;;;27997:18;;:::i;:::-;-1:-1:-1;28037:9:1;;27936:116::o;28057:125::-;28097:4;28125:1;28122;28119:8;28116:2;;;28130:18;;:::i;:::-;-1:-1:-1;28167:9:1;;28106:76::o;28187:258::-;28259:1;28269:113;28283:6;28280:1;28277:13;28269:113;;;28359:11;;;28353:18;28340:11;;;28333:39;28305:2;28298:10;28269:113;;;28400:6;28397:1;28394:13;28391:2;;;-1:-1:-1;;28435:1:1;28417:16;;28410:27;28240:205::o;28450:136::-;28489:3;28517:5;28507:2;;28526:18;;:::i;:::-;-1:-1:-1;;;28562:18:1;;28497:89::o;28591:380::-;28670:1;28666:12;;;;28713;;;28734:2;;28788:4;28780:6;28776:17;28766:27;;28734:2;28841;28833:6;28830:14;28810:18;28807:38;28804:2;;;28887:10;28882:3;28878:20;28875:1;28868:31;28922:4;28919:1;28912:15;28950:4;28947:1;28940:15;28804:2;;28646:325;;;:::o;28976:249::-;29086:2;29067:13;;-1:-1:-1;;29063:27:1;29051:40;;-1:-1:-1;;;;;29106:34:1;;29142:22;;;29103:62;29100:2;;;29168:18;;:::i;:::-;29204:2;29197:22;-1:-1:-1;;29023:202:1:o;29230:135::-;29269:3;-1:-1:-1;;29290:17:1;;29287:2;;;29310:18;;:::i;:::-;-1:-1:-1;29357:1:1;29346:13;;29277:88::o;29370:112::-;29402:1;29428;29418:2;;29433:18;;:::i;:::-;-1:-1:-1;29467:9:1;;29408:74::o;29487:127::-;29548:10;29543:3;29539:20;29536:1;29529:31;29579:4;29576:1;29569:15;29603:4;29600:1;29593:15;29619:127;29680:10;29675:3;29671:20;29668:1;29661:31;29711:4;29708:1;29701:15;29735:4;29732:1;29725:15;29751:127;29812:10;29807:3;29803:20;29800:1;29793:31;29843:4;29840:1;29833:15;29867:4;29864:1;29857:15;29883:185;29918:3;29960:1;29942:16;29939:23;29936:2;;;30010:1;30005:3;30000;29985:27;30041:10;30036:3;30032:20;29936:2;29926:142;:::o;30073:671::-;30112:3;30154:4;30136:16;30133:26;30130:2;;;30120:624;:::o;30130:2::-;30196;30190:9;-1:-1:-1;;30261:16:1;30257:25;;30254:1;30190:9;30233:50;30312:4;30306:11;30336:16;-1:-1:-1;;;;;30442:2:1;30435:4;30427:6;30423:17;30420:25;30415:2;30407:6;30404:14;30401:45;30398:2;;;30449:5;;;;;30120:624;:::o;30398:2::-;30486:6;30480:4;30476:17;30465:28;;30522:3;30516:10;30549:2;30541:6;30538:14;30535:2;;;30555:5;;;;;;30120:624;:::o;30535:2::-;30639;30620:16;30614:4;30610:27;30606:36;30599:4;30590:6;30585:3;30581:16;30577:27;30574:69;30571:2;;;30646:5;;;;;;30120:624;:::o;30571:2::-;30662:57;30713:4;30704:6;30696;30692:19;30688:30;30682:4;30662:57;:::i;:::-;-1:-1:-1;30735:3:1;;30120:624;-1:-1:-1;;;;;30120:624:1:o;30749:118::-;30835:5;30828:13;30821:21;30814:5;30811:32;30801:2;;30857:1;30854;30847:12;30872:131;-1:-1:-1;;;;;;30946:32:1;;30936:43;;30926:2;;30993:1;30990;30983:12
Swarm Source
ipfs://62236fd2104976173ee947ad909a5c25c5f1bb88edaad219667fff4164c89ac5
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.