ETH Price: $2,582.05 (-16.35%)
 

Overview

Max Total Supply

31,295 ZORA

Holders

25,413

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ilikesymmetry.eth
Balance
1 ZORA
0x016562aa41a8697720ce0943f003141f5deae006
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Internet Renaissance ☼☽

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Media

Compiler Version
v0.6.8+commit.0bbfe453

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 27 : Media.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.6.8;
pragma experimental ABIEncoderV2;
import {ERC721Burnable} from "./ERC721Burnable.sol";
import {ERC721} from "./ERC721.sol";
import {EnumerableSet} from "@openzeppelin/contracts/utils/EnumerableSet.sol";
import {Counters} from "@openzeppelin/contracts/utils/Counters.sol";
import {SafeMath} from "@openzeppelin/contracts/math/SafeMath.sol";
import {Math} from "@openzeppelin/contracts/math/Math.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {
ReentrancyGuard
} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import {Decimal} from "./Decimal.sol";
import {IMarket} from "./interfaces/IMarket.sol";
import "./interfaces/IMedia.sol";
/**
* @title A media value system, with perpetual equity to creators
* @notice This contract provides an interface to mint media with a market
* owned by the creator.
*/
contract Media is IMedia, ERC721Burnable, ReentrancyGuard {
using Counters for Counters.Counter;
using SafeMath for uint256;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 27 : BaseErc20.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma solidity 0.6.8;
/**
* NOTE: This contract only exists to serve as a testing utility. It is not recommended to be used outside of a testing environment
*/
import {SafeMath} from "@openzeppelin/contracts/math/SafeMath.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
/**
* @title ERC20 Token
*
* Basic ERC20 Implementation
*/
contract BaseERC20 is IERC20, Ownable {
using SafeMath for uint256;
// ============ Variables ============
string internal _name;
string internal _symbol;
uint256 internal _supply;
uint8 internal _decimals;
mapping(address => uint256) private _balances;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 27 : SafeMath.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 27 : IERC20.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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 `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 27 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "../GSN/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 27 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/*
* @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 GSN 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 payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 27 : ERC721Burnable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: MIT
/**
* NOTE: This file is a clone of the OpenZeppelin ERC721Burnable.sol contract. It was forked from https://github.com/OpenZeppelin/openzeppelin
     -contracts
* at commit 1ada3b633e5bfd9d4ffe0207d64773a11f5a7c40
*
* It was cloned in order to ensure it imported from the cloned ERC721.sol file. No other modifications have been made.
*/
pragma solidity 0.6.8;
import "@openzeppelin/contracts/GSN/Context.sol";
import "./ERC721.sol";
/**
* @title ERC721 Burnable Token
* @dev ERC721 Token that can be irreversibly burned (destroyed).
*/
abstract contract ERC721Burnable is Context, ERC721 {
/**
* @dev Burns `tokenId`. See {ERC721-_burn}.
*
* Requirements:
*
* - The caller must own `tokenId` or be an approved operator.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 27 : ERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: MIT
/**
* NOTE: This file is a clone of the OpenZeppelin ERC721.sol contract. It was forked from https://github.com/OpenZeppelin/openzeppelin-contracts
* at commit 1ada3b633e5bfd9d4ffe0207d64773a11f5a7c40
*
*
* The following functions needed to be modified, prompting this clone:
* - `_tokenURIs` visibility was changed from private to internal to support updating URIs after minting
* - `_baseURI` visibiility was changed from private to internal to support fetching token URI even after the token was burned
* - `_INTERFACE_ID_ERC721_METADATA` is no longer registered as an interface because _tokenURI now returns raw content instead of a JSON file, and
     supports updatable URIs
* - `_approve` visibility was changed from private to internal to support EIP-2612 flavored permits and approval revocation by an approved address
*/
pragma solidity 0.6.8;
import "@openzeppelin/contracts/GSN/Context.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/introspection/ERC165.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/EnumerableSet.sol";
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 27 : IERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.2;
import "../../introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 27 : IERC721Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.2;
import "./IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 27 : IERC721Enumerable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.2;
import "./IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 12 of 27 : IERC721Receiver.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data)
external returns (bytes4);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 13 of 27 : ERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts may inherit from this and call {_registerInterface} to declare
* their support of an interface.
*/
contract ERC165 is IERC165 {
/*
* bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
*/
bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;
/**
* @dev Mapping of interface ids to whether or not it's supported.
*/
mapping(bytes4 => bool) private _supportedInterfaces;
constructor () internal {
// Derived contracts need only register support for their own interfaces,
// we register support for ERC165 itself here
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 14 of 27 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.2;
/**
* @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
* ====
*/
function isContract(address account) internal view returns (bool) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 15 of 27 : EnumerableSet.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 16 of 27 : EnumerableMap.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @dev Library for managing an enumerable variant of Solidity's
* https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
* type.
*
* Maps have the following properties:
*
* - Entries are added, removed, and checked for existence in constant time
* (O(1)).
* - Entries are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableMap for EnumerableMap.UintToAddressMap;
*
* // Declare a set state variable
* EnumerableMap.UintToAddressMap private myMap;
* }
* ```
*
* As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 17 of 27 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @dev String operations.
*/
library Strings {
/**
* @dev Converts a `uint256` to its ASCII `string` 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);
uint256 index = digits - 1;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 18 of 27 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 19 of 27 : Counters.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "../math/SafeMath.sol";
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
* Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath}
* overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
* directly accessed.
*/
library Counters {
using SafeMath for uint256;
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 20 of 27 : Math.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 21 of 27 : ReentrancyGuard.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
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.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 22 of 27 : Decimal.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
Copyright 2019 dYdX Trading Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
pragma solidity 0.6.8;
pragma experimental ABIEncoderV2;
/**
* NOTE: This file is a clone of the dydx protocol's Decimal.sol contract. It was forked from https://github.com/dydxprotocol/solo
* at commit 2d8454e02702fe5bc455b848556660629c3cad36
*
* It has not been modified other than to use a newer solidity in the pragma to match the rest of the contract suite of this project
*/
import {SafeMath} from "@openzeppelin/contracts/math/SafeMath.sol";
import {Math} from "./Math.sol";
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 23 of 27 : IMarket.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.6.8;
pragma experimental ABIEncoderV2;
import {Decimal} from "../Decimal.sol";
/**
* @title Interface for Zora Protocol's Market
*/
interface IMarket {
struct Bid {
// Amount of the currency being bid
uint256 amount;
// Address to the ERC20 token being used to bid
address currency;
// Address of the bidder
address bidder;
// Address of the recipient
address recipient;
// % of the next sale to award the current owner
Decimal.D256 sellOnShare;
}
struct Ask {
// Amount of the currency being asked
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 24 of 27 : IMedia.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.6.8;
pragma experimental ABIEncoderV2;
import {IMarket} from "./IMarket.sol";
/**
* @title Interface for Zora Protocol's Media
*/
interface IMedia {
struct EIP712Signature {
uint256 deadline;
uint8 v;
bytes32 r;
bytes32 s;
}
struct MediaData {
// A valid URI of the content represented by this token
string tokenURI;
// A valid URI of the metadata associated with this token
string metadataURI;
// A SHA256 hash of the content pointed to by tokenURI
bytes32 contentHash;
// A SHA256 hash of the content pointed to by metadataURI
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 25 of 27 : Math.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma solidity 0.6.8;
pragma experimental ABIEncoderV2;
import {SafeMath} from "@openzeppelin/contracts/math/SafeMath.sol";
/**
* @title Math
*
* Library for non-standard Math functions
* NOTE: This file is a clone of the dydx protocol's Decimal.sol contract.
* It was forked from https://github.com/dydxprotocol/solo at commit
* 2d8454e02702fe5bc455b848556660629c3cad36. It has not been modified other than to use a
* newer solidity in the pragma to match the rest of the contract suite of this project.
*/
library Math {
using SafeMath for uint256;
// ============ Library Functions ============
/*
* Return target * (numerator / denominator).
*/
function getPartial(
uint256 target,
uint256 numerator,
uint256 denominator
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 26 of 27 : Market.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.6.8;
pragma experimental ABIEncoderV2;
import {SafeMath} from "@openzeppelin/contracts/math/SafeMath.sol";
import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import {Decimal} from "./Decimal.sol";
import {Media} from "./Media.sol";
import {IMarket} from "./interfaces/IMarket.sol";
/**
* @title A Market for pieces of media
* @notice This contract contains all of the market logic for Media
*/
contract Market is IMarket {
using SafeMath for uint256;
using SafeERC20 for IERC20;
/* *******
* Globals
* *******
*/
// Address of the media contract that can call this market
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 27 of 27 : SafeERC20.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "./IERC20.sol";
import "../../math/SafeMath.sol";
import "../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using SafeMath for uint256;
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 {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"marketContractAddr","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"string","name":"_uri","type":"string"}],"name":"TokenMetadataURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"string","name":"_uri","type":"string"}],"name":"TokenURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MINT_WITH_SIG_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"address","name":"bidder","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"components":[{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct Decimal.D256","name":"sellOnShare","type":"tuple"}],"internalType":"struct IMarket.Bid","name":"bid","type":"tuple"}],"name":"acceptBid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"auctionTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"string","name":"metadataURI","type":"string"},{"internalType":"bytes32","name":"contentHash","type":"bytes32"},{"internalType":"bytes32","name":"metadataHash","type":"bytes32"}],"internalType":"struct IMedia.MediaData","name":"data","type":"tuple"},{"components":[{"components":[{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct Decimal.D256","name":"prevOwner","type":"tuple"},{"components":[{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct Decimal.D256","name":"creator","type":"tuple"},{"components":[{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct Decimal.D256","name":"owner","type":"tuple"}],"internalType":"struct IMarket.BidShares","name":"bidShares","type":"tuple"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"creator","type":"address"},{"components":[{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"string","name":"metadataURI","type":"string"},{"internalType":"bytes32","name":"contentHash","type":"bytes32"},{"internalType":"bytes32","name":"metadataHash","type":"bytes32"}],"internalType":"struct IMedia.MediaData","name":"data","type":"tuple"},{"components":[{"components":[{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct Decimal.D256","name":"prevOwner","type":"tuple"},{"components":[{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct Decimal.D256","name":"creator","type":"tuple"},{"components":[{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct Decimal.D256","name":"owner","type":"tuple"}],"internalType":"struct IMarket.BidShares","name":"bidShares","type":"tuple"},{"components":[{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct IMedia.EIP712Signature","name":"sig","type":"tuple"}],"name":"mintWithSig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintWithSigNonces","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":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct IMedia.EIP712Signature","name":"sig","type":"tuple"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"permitNonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"previousTokenOwners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"removeAsk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"removeBid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"revokeApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","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":"tokenId","type":"uint256"},{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"currency","type":"address"}],"internalType":"struct IMarket.Ask","name":"ask","type":"tuple"}],"name":"setAsk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"address","name":"bidder","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"components":[{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct Decimal.D256","name":"sellOnShare","type":"tuple"}],"internalType":"struct IMarket.Bid","name":"bid","type":"tuple"}],"name":"setBid","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenContentHashes","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenCreators","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMetadataHashes","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"metadataURI","type":"string"}],"name":"updateTokenMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"updateTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003e0838038062003e08833981016040819052620000349162000223565b604051806040016040528060048152602001635a6f726160e01b815250604051806040016040528060048152602001635a4f524160e01b815250620000866301ffc9a760e01b6200012360201b60201c565b81516200009b9060069060208501906200017e565b508051620000b19060079060208401906200017e565b50620000cd6380ac58cd60e01b6001600160e01b036200012316565b620000e863780e9d6360e01b6001600160e01b036200012316565b50506001600a55600b80546001600160a01b0319166001600160a01b0383161790556200011c632711173360e11b62000123565b506200028a565b6001600160e01b03198082161415620001595760405162461bcd60e51b8152600401620001509062000253565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001c157805160ff1916838001178555620001f1565b82800160010185558215620001f1579182015b82811115620001f1578251825591602001919060010190620001d4565b50620001ff92915062000203565b5090565b6200022091905b80821115620001ff57600081556001016200020a565b90565b60006020828403121562000235578081fd5b81516001600160a01b03811681146200024c578182fd5b9392505050565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b613b6e806200029a6000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80636352211e1161013b578063b320f459116100b8578063e0fd045f1161007c578063e0fd045f146104d8578063e985e9c5146104eb578063f6b630f0146104fe578063f8ccd5de14610511578063fad321971461052457610248565b8063b320f45914610484578063b88d4fde14610497578063ba339399146104aa578063c87b56dd146104bd578063de5236fb146104d057610248565b806395d89b41116100ff57806395d89b411461043b5780639d8e726014610443578063a1794bcd14610456578063a22cb4651461045e578063b1e130fc1461047157610248565b80636352211e146103e75780636c0360eb146103fa57806370a082311461040257806375682e79146104155780637a7a12021461042857610248565b806323b872dd116101c957806342842e0e1161018d57806342842e0e1461038857806342966c681461039b5780634f6ccce7146103ae5780635bf62422146103c157806362f24b70146103d457610248565b806323b872dd1461033457806328220f35146103475780632cca32371461035a5780632f745c591461036d57806330adf81f1461038057610248565b80630bcd899b116102105780630bcd899b146102e05780630e2a1778146102f3578063157c3df91461030657806318160ddd1461031957806318e97fd11461032157610248565b806301ddc3b51461024d57806301ffc9a71461027657806306fdde0314610296578063081812fc146102ab578063095ea7b3146102cb575b600080fd5b61026061025b366004612cda565b610537565b60405161026d9190613019565b60405180910390f35b610289610284366004612c5e565b610549565b60405161026d919061300e565b61029e610568565b60405161026d91906130c0565b6102be6102b9366004612cda565b6105ff565b60405161026d9190612f7d565b6102de6102d9366004612bf6565b61064b565b005b6102606102ee366004612a53565b6106e3565b6102de610301366004612c20565b6106f5565b61029e610314366004612cda565b610919565b6102606109e4565b6102de61032f366004612d15565b6109f5565b6102de610342366004612aa2565b610b54565b6102de610355366004612cda565b610b8c565b6102de610368366004612c96565b610c3a565b61026061037b366004612bf6565b610c76565b610260610ca7565b6102de610396366004612aa2565b610ccb565b6102de6103a9366004612cda565b610ce6565b6102606103bc366004612cda565b610db8565b6102de6103cf366004612de2565b610dd4565b6102de6103e2366004612d8a565b610e8b565b6102be6103f5366004612cda565b610f4a565b61029e610f78565b610260610410366004612a53565b610fd9565b6102de610423366004612d15565b611022565b6102de610436366004612b85565b61116b565b61029e611325565b6102be610451366004612cda565b611386565b6102be6113a1565b6102de61046c366004612b4a565b6113b0565b6102de61047f366004612cda565b61147e565b6102de610492366004612cda565b6114f2565b6102de6104a5366004612ae2565b6115b0565b6102de6104b8366004612de2565b6115ef565b61029e6104cb366004612cda565b611671565b61026061173f565b6102be6104e6366004612cda565b611763565b6102896104f9366004612a6e565b61177e565b6102de61050c366004612cf2565b6117ac565b61026061051f366004612bf6565b611832565b610260610532366004612cda565b61184f565b60106020526000908152604090205481565b6001600160e01b03191660009081526020819052604090205460ff1690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f45780601f106105c9576101008083540402835291602001916105f4565b820191906000526020600020905b8154815290600101906020018083116105d757829003601f168201915b505050505090505b90565b600061060a82611861565b61062f5760405162461bcd60e51b81526004016106269061361f565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061065682610f4a565b9050806001600160a01b0316836001600160a01b0316141561068a5760405162461bcd60e51b8152600401610626906137ce565b806001600160a01b031661069c611874565b6001600160a01b031614806106b857506106b8816104f9611874565b6106d45760405162461bcd60e51b8152600401610626906133fa565b6106de8383611878565b505050565b60146020526000908152604090205481565b6002600a5414156107185760405162461bcd60e51b81526004016106269061393c565b6002600a558161072781611861565b6107435760405162461bcd60e51b815260040161062690613905565b81511580610752575081514211155b61076e5760405162461bcd60e51b8152600401610626906134a1565b6001600160a01b0384166107945760405162461bcd60e51b8152600401610626906131af565b600061079e6118e6565b90506000817f49ecf333e5b8c95c40fdafc95c1ad136e8914a8fb55e9dc8bb01eaa83a2df9ad87876013856107d283610f4a565b6001600160a01b03168152602080820192909252604090810160009081208c825283528190208054600181019091558a5191516108159695949391929101613022565b6040516020818303038152906040528051906020012060405160200161083c929190612ef8565b60405160208183030381529060405280519060200120905060006001828660200151876040015188606001516040516000815260200160405260405161088594939291906130a2565b6020604051602081039080840390855afa1580156108a7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906108e55750806001600160a01b03166108da87610f4a565b6001600160a01b0316145b6109015760405162461bcd60e51b8152600401610626906138ce565b61090b8787611878565b50506001600a555050505050565b60608180610927601561199c565b116109445760405162461bcd60e51b815260040161062690613115565b60008381526011602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156109d75780601f106109ac576101008083540402835291602001916109d7565b820191906000526020600020905b8154815290600101906020018083116109ba57829003601f168201915b5050505050915050919050565b60006109f060026119a0565b905090565b6002600a541415610a185760405162461bcd60e51b81526004016106269061393c565b6002600a553383610a2982826119ab565b610a455760405162461bcd60e51b8152600401610626906136b7565b6000858152600f60205260409020548590610a725760405162461bcd60e51b815260040161062690613737565b84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050825115159150610aca90505760405162461bcd60e51b815260040161062690613973565b610b0a8787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611a3092505050565b867f702fe2dc2dc0f68023540aa4a1e11811c0f29112f6ebf01e61b90538e4f29810338888604051610b3e93929190612fce565b60405180910390a250506001600a555050505050565b610b65610b5f611874565b826119ab565b610b815760405162461bcd60e51b815260040161062690613846565b6106de838383611a74565b6002600a541415610baf5760405162461bcd60e51b81526004016106269061393c565b6002600a553381610bc082826119ab565b610bdc5760405162461bcd60e51b8152600401610626906136b7565b600b546040516328220f3560e01b81526001600160a01b03909116906328220f3590610c0c908690600401613019565b600060405180830381600087803b158015610c2657600080fd5b505af115801561090b573d6000803e3d6000fd5b6002600a541415610c5d5760405162461bcd60e51b81526004016106269061393c565b6002600a55610c6d338383611ae1565b50506001600a55565b6001600160a01b0382166000908152600160205260408120610c9e908363ffffffff611cd716565b90505b92915050565b7f49ecf333e5b8c95c40fdafc95c1ad136e8914a8fb55e9dc8bb01eaa83a2df9ad81565b6106de838383604051806020016040528060008152506115b0565b6002600a541415610d095760405162461bcd60e51b81526004016106269061393c565b6002600a5580610d1881611861565b610d345760405162461bcd60e51b815260040161062690613905565b3382610d4082826119ab565b610d5c5760405162461bcd60e51b8152600401610626906136b7565b6000610d6785610f4a565b6000868152600d60205260409020549091506001600160a01b03808316911614610da35760405162461bcd60e51b8152600401610626906135db565b610dac85611ce3565b50506001600a55505050565b600080610dcc60028463ffffffff611dcf16565b509392505050565b6002600a541415610df75760405162461bcd60e51b81526004016106269061393c565b6002600a5581610e0681611861565b610e225760405162461bcd60e51b815260040161062690613905565b81604001516001600160a01b0316336001600160a01b031614610e575760405162461bcd60e51b81526004016106269061321d565b600b546040516317b6b0d360e31b81526001600160a01b039091169063bdb5869890610c0c90869086903390600401613a32565b6002600a541415610eae5760405162461bcd60e51b81526004016106269061393c565b6002600a553382610ebf82826119ab565b610edb5760405162461bcd60e51b8152600401610626906136b7565b600b5460405163062f24b760e41b81526001600160a01b03909116906362f24b7090610f0d90879087906004016139d0565b600060405180830381600087803b158015610f2757600080fd5b505af1158015610f3b573d6000803e3d6000fd5b50506001600a55505050505050565b6000610ca182604051806060016040528060298152602001613b10602991396002919063ffffffff611deb16565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f45780601f106105c9576101008083540402835291602001916105f4565b60006001600160a01b0382166110015760405162461bcd60e51b815260040161062690613457565b6001600160a01b0382166000908152600160205260409020610ca1906119a0565b6002600a5414156110455760405162461bcd60e51b81526004016106269061393c565b6002600a55338361105682826119ab565b6110725760405162461bcd60e51b8152600401610626906136b7565b600085815260106020526040902054859061109f5760405162461bcd60e51b81526004016106269061331b565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508251151591506110f790505760405162461bcd60e51b815260040161062690613973565b6111378787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e0292505050565b867fe3df41127db820c79e5b8d541a63e40e3e97b9af96f7a50bded13091b70df9ae338888604051610b3e93929190612fce565b6002600a54141561118e5760405162461bcd60e51b81526004016106269061393c565b6002600a55805115806111a2575080514211155b6111be5760405162461bcd60e51b81526004016106269061380f565b60006111c86118e6565b6040808601516060870151602080880151516001600160a01b038b166000908152601483528581208054600181019091558951965197985090968896611236967f2952e482b8e2b192305f87374d7af45dc2eafafe4f50d26a0c02e90f2fdbe14b969095909493920161307a565b6040516020818303038152906040528051906020012060405160200161125d929190612ef8565b6040516020818303038152906040528051906020012090506000600182856020015186604001518760600151604051600081526020016040526040516112a694939291906130a2565b6020604051602081039080840390855afa1580156112c8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906112fe5750806001600160a01b0316876001600160a01b0316145b61131a5760405162461bcd60e51b8152600401610626906138ce565b61090b818787611ae1565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f45780601f106105c9576101008083540402835291602001916105f4565b600c602052600090815260409020546001600160a01b031681565b600b546001600160a01b031681565b6113b8611874565b6001600160a01b0316826001600160a01b031614156113e95760405162461bcd60e51b8152600401610626906132e4565b80600560006113f6611874565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561143a611874565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611472919061300e565b60405180910390a35050565b6002600a5414156114a15760405162461bcd60e51b81526004016106269061393c565b6002600a556114af816105ff565b6001600160a01b0316336001600160a01b0316146114df5760405162461bcd60e51b81526004016106269061325e565b6114ea600082611878565b506001600a55565b6002600a5414156115155760405162461bcd60e51b81526004016106269061393c565b6002600a558080611526601561199c565b116115435760405162461bcd60e51b815260040161062690613115565b600b5460405163776a083560e01b81526001600160a01b039091169063776a08359061157590859033906004016139b9565b600060405180830381600087803b15801561158f57600080fd5b505af11580156115a3573d6000803e3d6000fd5b50506001600a5550505050565b6115c16115bb611874565b836119ab565b6115dd5760405162461bcd60e51b815260040161062690613846565b6115e984848484611e47565b50505050565b6002600a5414156116125760405162461bcd60e51b81526004016106269061393c565b6002600a55338261162382826119ab565b61163f5760405162461bcd60e51b8152600401610626906136b7565b600b5460405163ba33939960e01b81526001600160a01b039091169063ba33939990610f0d9087908790600401613a1e565b6060818061167f601561199c565b1161169c5760405162461bcd60e51b815260040161062690613115565b60008381526008602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156117315780601f1061170657610100808354040283529160200191611731565b820191906000526020600020905b81548152906001019060200180831161171457829003601f168201915b509398975050505050505050565b7f2952e482b8e2b192305f87374d7af45dc2eafafe4f50d26a0c02e90f2fdbe14b81565b600d602052600090815260409020546001600160a01b031681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600b546001600160a01b031633146117d65760405162461bcd60e51b81526004016106269061356f565b6117df82610f4a565b6000838152600c6020526040902080546001600160a01b0319166001600160a01b039290921691909117905561182e61181783610f4a565b828460405180602001604052806000815250611e47565b5050565b601360209081526000928352604080842090915290825290205481565b600f6020526000908152604090205481565b6000610ca160028363ffffffff611e7a16565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118ad82610f4a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60405160009046906118f790612f13565b60408051918290038220828201825260048352635a6f726160e01b6020938401528151808301835260018152603160f81b908401529051611980927f91beda2a71cae260ce24b7d0ba9253f7212b59cbe39b0f303ac34fac7c00047d917fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc691869130910161304e565b6040516020818303038152906040528051906020012091505090565b5490565b6000610ca18261199c565b60006119b682611861565b6119d25760405162461bcd60e51b8152600401610626906133ae565b60006119dd83610f4a565b9050806001600160a01b0316846001600160a01b03161480611a185750836001600160a01b0316611a0d846105ff565b6001600160a01b0316145b80611a285750611a28818561177e565b949350505050565b611a3982611861565b611a555760405162461bcd60e51b81526004016106269061366b565b600082815260086020908152604090912082516106de928401906127a2565b600b546040516328220f3560e01b81526001600160a01b03909116906328220f3590611aa4908490600401613019565b600060405180830381600087803b158015611abe57600080fd5b505af1158015611ad2573d6000803e3d6000fd5b505050506106de838383611e86565b81518051611b015760405162461bcd60e51b815260040161062690613973565b60208301518051611b245760405162461bcd60e51b815260040161062690613973565b6040840151611b455760405162461bcd60e51b81526004016106269061336a565b60408085015160009081526012602052205460ff1615611b775760405162461bcd60e51b8152600401610626906134d0565b6060840151611b985760405162461bcd60e51b815260040161062690613789565b6000611ba4601561199c565b9050611bb08682611fa6565b611bba6015611fc0565b611bc8818660400151611fc9565b611bd6818660600151612002565b611be4818660200151611e02565b611bf2818660000151611a30565b6001600160a01b0386166000908152600e60205260409020611c1a908263ffffffff61203b16565b50604080860151600090815260126020908152828220805460ff19166001179055838252600d815282822080546001600160a01b03808c166001600160a01b03199283168117909355600c90935292849020805490931617909155600b5491516375aab41d60e11b815291169063eb55683a90611c9d90849088906004016139f4565b600060405180830381600087803b158015611cb757600080fd5b505af1158015611ccb573d6000803e3d6000fd5b50505050505050505050565b6000610c9e8383612047565b60008181526008602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611d785780601f10611d4d57610100808354040283529160200191611d78565b820191906000526020600020905b815481529060010190602001808311611d5b57829003601f168201915b50505050509050611d888261208c565b805115611db05760008281526008602090815260409091208251611dae928401906127a2565b505b506000908152600c6020526040902080546001600160a01b0319169055565b6000808080611dde8686612165565b9097909650945050505050565b6000611df88484846121c1565b90505b9392505050565b81611e0c81611861565b611e285760405162461bcd60e51b815260040161062690613905565b600083815260116020908152604090912083516115e9928501906127a2565b611e52848484611a74565b611e5e84848484612220565b6115e95760405162461bcd60e51b81526004016106269061315d565b6000610c9e8383612305565b826001600160a01b0316611e9982610f4a565b6001600160a01b031614611ebf5760405162461bcd60e51b8152600401610626906136ee565b6001600160a01b038216611ee55760405162461bcd60e51b8152600401610626906132a0565b611ef08383836106de565b611efb600082611878565b6001600160a01b0383166000908152600160205260409020611f23908263ffffffff61231d16565b506001600160a01b0382166000908152600160205260409020611f4c908263ffffffff61203b16565b50611f5f6002828463ffffffff61232916565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61182e82826040518060200160405280600081525061233f565b80546001019055565b81611fd381611861565b611fef5760405162461bcd60e51b815260040161062690613905565b506000918252600f602052604090912055565b8161200c81611861565b6120285760405162461bcd60e51b815260040161062690613905565b5060009182526010602052604090912055565b6000610c9e8383612372565b8154600090821061206a5760405162461bcd60e51b8152600401610626906130d3565b82600001828154811061207957fe5b9060005260206000200154905092915050565b600061209782610f4a565b90506120a5816000846106de565b6120b0600083611878565b60008281526008602052604090205460026000196101006001841615020190911604156120ee5760008281526008602052604081206120ee91612820565b6001600160a01b0381166000908152600160205260409020612116908363ffffffff61231d16565b5061212860028363ffffffff6123bc16565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b81546000908190831061218a5760405162461bcd60e51b81526004016106269061352d565b600084600001848154811061219b57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816121f15760405162461bcd60e51b815260040161062691906130c0565b5084600001600182038154811061220457fe5b9060005260206000209060020201600101549150509392505050565b6000612234846001600160a01b03166123c8565b61224057506001611a28565b60606122ce630a85bd0160e11b612255611874565b88878760405160240161226b9493929190612f91565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613ade603291396001600160a01b038816919063ffffffff6123ce16565b90506000818060200190518101906122e69190612c7a565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b6000610c9e83836123dd565b6000611df884846001600160a01b0385166124a3565b612349838361253a565b6123566000848484612220565b6106de5760405162461bcd60e51b81526004016106269061315d565b600061237e8383612305565b6123b457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610ca1565b506000610ca1565b6000610c9e838361260a565b3b151590565b6060611df884846000856126de565b60008181526001830160205260408120548015612499578354600019808301919081019060009087908390811061241057fe5b906000526020600020015490508087600001848154811061242d57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061245d57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610ca1565b6000915050610ca1565b600082815260018401602052604081205480612508575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611dfb565b8285600001600183038154811061251b57fe5b9060005260206000209060020201600101819055506000915050611dfb565b6001600160a01b0382166125605760405162461bcd60e51b8152600401610626906135a6565b61256981611861565b156125865760405162461bcd60e51b8152600401610626906131e6565b612592600083836106de565b6001600160a01b03821660009081526001602052604090206125ba908263ffffffff61203b16565b506125cd6002828463ffffffff61232916565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008181526001830160205260408120548015612499578354600019808301919081019060009087908390811061263d57fe5b906000526020600020906002020190508087600001848154811061265d57fe5b60009182526020808320845460029093020191825560019384015491840191909155835482528983019052604090209084019055865487908061269c57fe5b6000828152602080822060026000199094019384020182815560019081018390559290935588815289820190925260408220919091559450610ca19350505050565b60606126e9856123c8565b6127055760405162461bcd60e51b815260040161062690613897565b60006060866001600160a01b031685876040516127229190612edc565b60006040518083038185875af1925050503d806000811461275f576040519150601f19603f3d011682016040523d82523d6000602084013e612764565b606091505b50915091508115612778579150611a289050565b8051156127885780518082602001fd5b8360405162461bcd60e51b815260040161062691906130c0565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106127e357805160ff1916838001178555612810565b82800160010185558215612810579182015b828111156128105782518255916020019190600101906127f5565b5061281c929150612867565b5090565b50805460018160011615610100020316600290046000825580601f106128465750612864565b601f0160209004906000526020600020908101906128649190612867565b50565b6105fc91905b8082111561281c576000815560010161286d565b80356001600160a01b0381168114610ca157600080fd5b600082601f8301126128a8578081fd5b813567ffffffffffffffff8111156128be578182fd5b6128d1601f8201601f1916602001613a5f565b91508082528360208285010111156128e857600080fd5b8060208401602084013760009082016020015292915050565b600060608284031215612912578081fd5b61291c6060613a5f565b90506129288383612954565b81526129378360208401612954565b60208201526129498360408401612954565b604082015292915050565b600060208284031215612965578081fd5b61296f6020613a5f565b9135825250919050565b60006080828403121561298a578081fd5b6129946080613a5f565b905081358152602082013560ff811681146129ae57600080fd5b80602083015250604082013560408201526060820135606082015292915050565b6000608082840312156129e0578081fd5b6129ea6080613a5f565b9050813567ffffffffffffffff80821115612a0457600080fd5b612a1085838601612898565b83526020840135915080821115612a2657600080fd5b50612a3384828501612898565b602083015250604082013560408201526060820135606082015292915050565b600060208284031215612a64578081fd5b610c9e8383612881565b60008060408385031215612a80578081fd5b612a8a8484612881565b9150612a998460208501612881565b90509250929050565b600080600060608486031215612ab6578081fd5b8335612ac181613ab2565b92506020840135612ad181613ab2565b929592945050506040919091013590565b60008060008060808587031215612af7578081fd5b612b018686612881565b9350612b108660208701612881565b925060408501359150606085013567ffffffffffffffff811115612b32578182fd5b612b3e87828801612898565b91505092959194509250565b60008060408385031215612b5c578182fd5b612b668484612881565b915060208301358015158114612b7a578182fd5b809150509250929050565b6000806000806101208587031215612b9b578081fd5b612ba58686612881565b9350602085013567ffffffffffffffff811115612bc0578182fd5b612bcc878288016129cf565b935050612bdc8660408701612901565b9150612beb8660a08701612979565b905092959194509250565b60008060408385031215612c08578182fd5b612c128484612881565b946020939093013593505050565b600080600060c08486031215612c34578081fd5b8335612c3f81613ab2565b925060208401359150612c558560408601612979565b90509250925092565b600060208284031215612c6f578081fd5b8135611dfb81613ac7565b600060208284031215612c8b578081fd5b8151611dfb81613ac7565b60008060808385031215612ca8578182fd5b823567ffffffffffffffff811115612cbe578283fd5b612cca858286016129cf565b925050612a998460208501612901565b600060208284031215612ceb578081fd5b5035919050565b60008060408385031215612d04578182fd5b82359150612a998460208501612881565b600080600060408486031215612d29578081fd5b83359250602084013567ffffffffffffffff80821115612d47578283fd5b81860187601f820112612d58578384fd5b8035925081831115612d68578384fd5b876020848301011115612d79578384fd5b949760209095019650909450505050565b6000808284036060811215612d9d578283fd5b833592506040601f1982011215612db2578182fd5b50612dbd6040613a5f565b602084013581526040840135612dd281613ab2565b6020820152919491935090915050565b60008082840360c0811215612df5578283fd5b8335925060a0601f1982011215612e0a578182fd5b50612e1560a0613a5f565b60208401358152612e298560408601612881565b6020820152612e3b8560608601612881565b6040820152612e4d8560808601612881565b6060820152612e5f8560a08601612954565b6080820152809150509250929050565b60008151808452612e87816020860160208601613a86565b601f01601f19169290920160200192915050565b805182526020808201516001600160a01b03908116918401919091526040808301518216908401526060808301519091169083015260809081015151910152565b60008251612eee818460208701613a86565b9190910192915050565b61190160f01b81526002810192909252602282015260420190565b7f454950373132446f6d61696e28737472696e67206e616d652c737472696e672081527f76657273696f6e2c75696e7432353620636861696e49642c6164647265737320602082015271766572696679696e67436f6e74726163742960701b604082015260520190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612fc490830184612e6f565b9695505050505050565b6001600160a01b03841681526040602082018190528101829052600082846060840137818301606090810191909152601f909201601f1916010192915050565b901515815260200190565b90815260200190565b9485526001600160a01b0393909316602085015260408401919091526060830152608082015260a00190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b958652602086019490945260408501929092526060840152608083015260a082015260c00190565b93845260ff9290921660208401526040830152606082015260800190565b600060208252610c9e6020830184612e6f565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526028908201527f4d656469613a20746f6b656e2077697468207468617420696420646f6573206e6040820152671bdd08195e1a5cdd60c21b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4d656469613a207370656e6465722063616e6e6f742062652030783000000000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526021908201527f4d61726b65743a20426964646572206d757374206265206d73672073656e64656040820152603960f91b606082015260800190565b60208082526022908201527f4d656469613a2063616c6c6572206e6f7420617070726f766564206164647265604082015261737360f01b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602f908201527f4d656469613a20746f6b656e20646f6573206e6f74206861766520686173682060408201526e6f6620697473206d6574616461746160881b606082015260800190565b60208082526024908201527f4d656469613a20636f6e74656e742068617368206d757374206265206e6f6e2d6040820152637a65726f60e01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252601590820152741359591a584e8814195c9b5a5d08195e1c1a5c9959605a1b604082015260600190565b6020808252603e908201527f4d656469613a206120746f6b656e2068617320616c7265616479206265656e2060408201527f637265617465642077697468207468697320636f6e74656e7420686173680000606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601b908201527f4d656469613a206f6e6c79206d61726b657420636f6e74726163740000000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526024908201527f4d656469613a206f776e6572206973206e6f742063726561746f72206f66206d6040820152636564696160e01b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602c908201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601d908201527f4d656469613a204f6e6c7920617070726f766564206f72206f776e6572000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526032908201527f4d656469613a20746f6b656e20646f6573206e6f7420686176652068617368206040820152711bd98818dc99585d19590818dbdb9d195b9d60721b606082015260800190565b60208082526025908201527f4d656469613a206d657461646174612068617368206d757374206265206e6f6e6040820152642d7a65726f60d81b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601a908201527f4d656469613a206d696e74576974685369672065787069726564000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526018908201527f4d656469613a205369676e617475726520696e76616c69640000000000000000604082015260600190565b60208082526018908201527f4d656469613a206e6f6e6578697374656e7420746f6b656e0000000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526026908201527f4d656469613a2073706563696669656420757269206d757374206265206e6f6e6040820152652d656d70747960d01b606082015260800190565b9182526001600160a01b0316602082015260400190565b918252805160208084019190915201516001600160a01b0316604082015260600190565b91825280515160208084019190915281015151604080840191909152015151606082015260800190565b82815260c08101611dfb6020830184612e9b565b83815260e08101613a466020830185612e9b565b6001600160a01b039290921660c0919091015292915050565b60405181810167ffffffffffffffff81118282101715613a7e57600080fd5b604052919050565b60005b83811015613aa1578181015183820152602001613a89565b838111156115e95750506000910152565b6001600160a01b038116811461286457600080fd5b6001600160e01b03198116811461286457600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212206e7e03b577d7c79d4475964fc338438054e07f10c4421ee6a364158a7b63f58064736f6c63430006080033000000000000000000000000e5bfab544eca83849c53464f85b7164375bdaac1

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c80636352211e1161013b578063b320f459116100b8578063e0fd045f1161007c578063e0fd045f146104d8578063e985e9c5146104eb578063f6b630f0146104fe578063f8ccd5de14610511578063fad321971461052457610248565b8063b320f45914610484578063b88d4fde14610497578063ba339399146104aa578063c87b56dd146104bd578063de5236fb146104d057610248565b806395d89b41116100ff57806395d89b411461043b5780639d8e726014610443578063a1794bcd14610456578063a22cb4651461045e578063b1e130fc1461047157610248565b80636352211e146103e75780636c0360eb146103fa57806370a082311461040257806375682e79146104155780637a7a12021461042857610248565b806323b872dd116101c957806342842e0e1161018d57806342842e0e1461038857806342966c681461039b5780634f6ccce7146103ae5780635bf62422146103c157806362f24b70146103d457610248565b806323b872dd1461033457806328220f35146103475780632cca32371461035a5780632f745c591461036d57806330adf81f1461038057610248565b80630bcd899b116102105780630bcd899b146102e05780630e2a1778146102f3578063157c3df91461030657806318160ddd1461031957806318e97fd11461032157610248565b806301ddc3b51461024d57806301ffc9a71461027657806306fdde0314610296578063081812fc146102ab578063095ea7b3146102cb575b600080fd5b61026061025b366004612cda565b610537565b60405161026d9190613019565b60405180910390f35b610289610284366004612c5e565b610549565b60405161026d919061300e565b61029e610568565b60405161026d91906130c0565b6102be6102b9366004612cda565b6105ff565b60405161026d9190612f7d565b6102de6102d9366004612bf6565b61064b565b005b6102606102ee366004612a53565b6106e3565b6102de610301366004612c20565b6106f5565b61029e610314366004612cda565b610919565b6102606109e4565b6102de61032f366004612d15565b6109f5565b6102de610342366004612aa2565b610b54565b6102de610355366004612cda565b610b8c565b6102de610368366004612c96565b610c3a565b61026061037b366004612bf6565b610c76565b610260610ca7565b6102de610396366004612aa2565b610ccb565b6102de6103a9366004612cda565b610ce6565b6102606103bc366004612cda565b610db8565b6102de6103cf366004612de2565b610dd4565b6102de6103e2366004612d8a565b610e8b565b6102be6103f5366004612cda565b610f4a565b61029e610f78565b610260610410366004612a53565b610fd9565b6102de610423366004612d15565b611022565b6102de610436366004612b85565b61116b565b61029e611325565b6102be610451366004612cda565b611386565b6102be6113a1565b6102de61046c366004612b4a565b6113b0565b6102de61047f366004612cda565b61147e565b6102de610492366004612cda565b6114f2565b6102de6104a5366004612ae2565b6115b0565b6102de6104b8366004612de2565b6115ef565b61029e6104cb366004612cda565b611671565b61026061173f565b6102be6104e6366004612cda565b611763565b6102896104f9366004612a6e565b61177e565b6102de61050c366004612cf2565b6117ac565b61026061051f366004612bf6565b611832565b610260610532366004612cda565b61184f565b60106020526000908152604090205481565b6001600160e01b03191660009081526020819052604090205460ff1690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f45780601f106105c9576101008083540402835291602001916105f4565b820191906000526020600020905b8154815290600101906020018083116105d757829003601f168201915b505050505090505b90565b600061060a82611861565b61062f5760405162461bcd60e51b81526004016106269061361f565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061065682610f4a565b9050806001600160a01b0316836001600160a01b0316141561068a5760405162461bcd60e51b8152600401610626906137ce565b806001600160a01b031661069c611874565b6001600160a01b031614806106b857506106b8816104f9611874565b6106d45760405162461bcd60e51b8152600401610626906133fa565b6106de8383611878565b505050565b60146020526000908152604090205481565b6002600a5414156107185760405162461bcd60e51b81526004016106269061393c565b6002600a558161072781611861565b6107435760405162461bcd60e51b815260040161062690613905565b81511580610752575081514211155b61076e5760405162461bcd60e51b8152600401610626906134a1565b6001600160a01b0384166107945760405162461bcd60e51b8152600401610626906131af565b600061079e6118e6565b90506000817f49ecf333e5b8c95c40fdafc95c1ad136e8914a8fb55e9dc8bb01eaa83a2df9ad87876013856107d283610f4a565b6001600160a01b03168152602080820192909252604090810160009081208c825283528190208054600181019091558a5191516108159695949391929101613022565b6040516020818303038152906040528051906020012060405160200161083c929190612ef8565b60405160208183030381529060405280519060200120905060006001828660200151876040015188606001516040516000815260200160405260405161088594939291906130a2565b6020604051602081039080840390855afa1580156108a7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906108e55750806001600160a01b03166108da87610f4a565b6001600160a01b0316145b6109015760405162461bcd60e51b8152600401610626906138ce565b61090b8787611878565b50506001600a555050505050565b60608180610927601561199c565b116109445760405162461bcd60e51b815260040161062690613115565b60008381526011602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156109d75780601f106109ac576101008083540402835291602001916109d7565b820191906000526020600020905b8154815290600101906020018083116109ba57829003601f168201915b5050505050915050919050565b60006109f060026119a0565b905090565b6002600a541415610a185760405162461bcd60e51b81526004016106269061393c565b6002600a553383610a2982826119ab565b610a455760405162461bcd60e51b8152600401610626906136b7565b6000858152600f60205260409020548590610a725760405162461bcd60e51b815260040161062690613737565b84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050825115159150610aca90505760405162461bcd60e51b815260040161062690613973565b610b0a8787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611a3092505050565b867f702fe2dc2dc0f68023540aa4a1e11811c0f29112f6ebf01e61b90538e4f29810338888604051610b3e93929190612fce565b60405180910390a250506001600a555050505050565b610b65610b5f611874565b826119ab565b610b815760405162461bcd60e51b815260040161062690613846565b6106de838383611a74565b6002600a541415610baf5760405162461bcd60e51b81526004016106269061393c565b6002600a553381610bc082826119ab565b610bdc5760405162461bcd60e51b8152600401610626906136b7565b600b546040516328220f3560e01b81526001600160a01b03909116906328220f3590610c0c908690600401613019565b600060405180830381600087803b158015610c2657600080fd5b505af115801561090b573d6000803e3d6000fd5b6002600a541415610c5d5760405162461bcd60e51b81526004016106269061393c565b6002600a55610c6d338383611ae1565b50506001600a55565b6001600160a01b0382166000908152600160205260408120610c9e908363ffffffff611cd716565b90505b92915050565b7f49ecf333e5b8c95c40fdafc95c1ad136e8914a8fb55e9dc8bb01eaa83a2df9ad81565b6106de838383604051806020016040528060008152506115b0565b6002600a541415610d095760405162461bcd60e51b81526004016106269061393c565b6002600a5580610d1881611861565b610d345760405162461bcd60e51b815260040161062690613905565b3382610d4082826119ab565b610d5c5760405162461bcd60e51b8152600401610626906136b7565b6000610d6785610f4a565b6000868152600d60205260409020549091506001600160a01b03808316911614610da35760405162461bcd60e51b8152600401610626906135db565b610dac85611ce3565b50506001600a55505050565b600080610dcc60028463ffffffff611dcf16565b509392505050565b6002600a541415610df75760405162461bcd60e51b81526004016106269061393c565b6002600a5581610e0681611861565b610e225760405162461bcd60e51b815260040161062690613905565b81604001516001600160a01b0316336001600160a01b031614610e575760405162461bcd60e51b81526004016106269061321d565b600b546040516317b6b0d360e31b81526001600160a01b039091169063bdb5869890610c0c90869086903390600401613a32565b6002600a541415610eae5760405162461bcd60e51b81526004016106269061393c565b6002600a553382610ebf82826119ab565b610edb5760405162461bcd60e51b8152600401610626906136b7565b600b5460405163062f24b760e41b81526001600160a01b03909116906362f24b7090610f0d90879087906004016139d0565b600060405180830381600087803b158015610f2757600080fd5b505af1158015610f3b573d6000803e3d6000fd5b50506001600a55505050505050565b6000610ca182604051806060016040528060298152602001613b10602991396002919063ffffffff611deb16565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f45780601f106105c9576101008083540402835291602001916105f4565b60006001600160a01b0382166110015760405162461bcd60e51b815260040161062690613457565b6001600160a01b0382166000908152600160205260409020610ca1906119a0565b6002600a5414156110455760405162461bcd60e51b81526004016106269061393c565b6002600a55338361105682826119ab565b6110725760405162461bcd60e51b8152600401610626906136b7565b600085815260106020526040902054859061109f5760405162461bcd60e51b81526004016106269061331b565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250508251151591506110f790505760405162461bcd60e51b815260040161062690613973565b6111378787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e0292505050565b867fe3df41127db820c79e5b8d541a63e40e3e97b9af96f7a50bded13091b70df9ae338888604051610b3e93929190612fce565b6002600a54141561118e5760405162461bcd60e51b81526004016106269061393c565b6002600a55805115806111a2575080514211155b6111be5760405162461bcd60e51b81526004016106269061380f565b60006111c86118e6565b6040808601516060870151602080880151516001600160a01b038b166000908152601483528581208054600181019091558951965197985090968896611236967f2952e482b8e2b192305f87374d7af45dc2eafafe4f50d26a0c02e90f2fdbe14b969095909493920161307a565b6040516020818303038152906040528051906020012060405160200161125d929190612ef8565b6040516020818303038152906040528051906020012090506000600182856020015186604001518760600151604051600081526020016040526040516112a694939291906130a2565b6020604051602081039080840390855afa1580156112c8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906112fe5750806001600160a01b0316876001600160a01b0316145b61131a5760405162461bcd60e51b8152600401610626906138ce565b61090b818787611ae1565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105f45780601f106105c9576101008083540402835291602001916105f4565b600c602052600090815260409020546001600160a01b031681565b600b546001600160a01b031681565b6113b8611874565b6001600160a01b0316826001600160a01b031614156113e95760405162461bcd60e51b8152600401610626906132e4565b80600560006113f6611874565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561143a611874565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611472919061300e565b60405180910390a35050565b6002600a5414156114a15760405162461bcd60e51b81526004016106269061393c565b6002600a556114af816105ff565b6001600160a01b0316336001600160a01b0316146114df5760405162461bcd60e51b81526004016106269061325e565b6114ea600082611878565b506001600a55565b6002600a5414156115155760405162461bcd60e51b81526004016106269061393c565b6002600a558080611526601561199c565b116115435760405162461bcd60e51b815260040161062690613115565b600b5460405163776a083560e01b81526001600160a01b039091169063776a08359061157590859033906004016139b9565b600060405180830381600087803b15801561158f57600080fd5b505af11580156115a3573d6000803e3d6000fd5b50506001600a5550505050565b6115c16115bb611874565b836119ab565b6115dd5760405162461bcd60e51b815260040161062690613846565b6115e984848484611e47565b50505050565b6002600a5414156116125760405162461bcd60e51b81526004016106269061393c565b6002600a55338261162382826119ab565b61163f5760405162461bcd60e51b8152600401610626906136b7565b600b5460405163ba33939960e01b81526001600160a01b039091169063ba33939990610f0d9087908790600401613a1e565b6060818061167f601561199c565b1161169c5760405162461bcd60e51b815260040161062690613115565b60008381526008602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156117315780601f1061170657610100808354040283529160200191611731565b820191906000526020600020905b81548152906001019060200180831161171457829003601f168201915b509398975050505050505050565b7f2952e482b8e2b192305f87374d7af45dc2eafafe4f50d26a0c02e90f2fdbe14b81565b600d602052600090815260409020546001600160a01b031681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600b546001600160a01b031633146117d65760405162461bcd60e51b81526004016106269061356f565b6117df82610f4a565b6000838152600c6020526040902080546001600160a01b0319166001600160a01b039290921691909117905561182e61181783610f4a565b828460405180602001604052806000815250611e47565b5050565b601360209081526000928352604080842090915290825290205481565b600f6020526000908152604090205481565b6000610ca160028363ffffffff611e7a16565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118ad82610f4a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60405160009046906118f790612f13565b60408051918290038220828201825260048352635a6f726160e01b6020938401528151808301835260018152603160f81b908401529051611980927f91beda2a71cae260ce24b7d0ba9253f7212b59cbe39b0f303ac34fac7c00047d917fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc691869130910161304e565b6040516020818303038152906040528051906020012091505090565b5490565b6000610ca18261199c565b60006119b682611861565b6119d25760405162461bcd60e51b8152600401610626906133ae565b60006119dd83610f4a565b9050806001600160a01b0316846001600160a01b03161480611a185750836001600160a01b0316611a0d846105ff565b6001600160a01b0316145b80611a285750611a28818561177e565b949350505050565b611a3982611861565b611a555760405162461bcd60e51b81526004016106269061366b565b600082815260086020908152604090912082516106de928401906127a2565b600b546040516328220f3560e01b81526001600160a01b03909116906328220f3590611aa4908490600401613019565b600060405180830381600087803b158015611abe57600080fd5b505af1158015611ad2573d6000803e3d6000fd5b505050506106de838383611e86565b81518051611b015760405162461bcd60e51b815260040161062690613973565b60208301518051611b245760405162461bcd60e51b815260040161062690613973565b6040840151611b455760405162461bcd60e51b81526004016106269061336a565b60408085015160009081526012602052205460ff1615611b775760405162461bcd60e51b8152600401610626906134d0565b6060840151611b985760405162461bcd60e51b815260040161062690613789565b6000611ba4601561199c565b9050611bb08682611fa6565b611bba6015611fc0565b611bc8818660400151611fc9565b611bd6818660600151612002565b611be4818660200151611e02565b611bf2818660000151611a30565b6001600160a01b0386166000908152600e60205260409020611c1a908263ffffffff61203b16565b50604080860151600090815260126020908152828220805460ff19166001179055838252600d815282822080546001600160a01b03808c166001600160a01b03199283168117909355600c90935292849020805490931617909155600b5491516375aab41d60e11b815291169063eb55683a90611c9d90849088906004016139f4565b600060405180830381600087803b158015611cb757600080fd5b505af1158015611ccb573d6000803e3d6000fd5b50505050505050505050565b6000610c9e8383612047565b60008181526008602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015611d785780601f10611d4d57610100808354040283529160200191611d78565b820191906000526020600020905b815481529060010190602001808311611d5b57829003601f168201915b50505050509050611d888261208c565b805115611db05760008281526008602090815260409091208251611dae928401906127a2565b505b506000908152600c6020526040902080546001600160a01b0319169055565b6000808080611dde8686612165565b9097909650945050505050565b6000611df88484846121c1565b90505b9392505050565b81611e0c81611861565b611e285760405162461bcd60e51b815260040161062690613905565b600083815260116020908152604090912083516115e9928501906127a2565b611e52848484611a74565b611e5e84848484612220565b6115e95760405162461bcd60e51b81526004016106269061315d565b6000610c9e8383612305565b826001600160a01b0316611e9982610f4a565b6001600160a01b031614611ebf5760405162461bcd60e51b8152600401610626906136ee565b6001600160a01b038216611ee55760405162461bcd60e51b8152600401610626906132a0565b611ef08383836106de565b611efb600082611878565b6001600160a01b0383166000908152600160205260409020611f23908263ffffffff61231d16565b506001600160a01b0382166000908152600160205260409020611f4c908263ffffffff61203b16565b50611f5f6002828463ffffffff61232916565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61182e82826040518060200160405280600081525061233f565b80546001019055565b81611fd381611861565b611fef5760405162461bcd60e51b815260040161062690613905565b506000918252600f602052604090912055565b8161200c81611861565b6120285760405162461bcd60e51b815260040161062690613905565b5060009182526010602052604090912055565b6000610c9e8383612372565b8154600090821061206a5760405162461bcd60e51b8152600401610626906130d3565b82600001828154811061207957fe5b9060005260206000200154905092915050565b600061209782610f4a565b90506120a5816000846106de565b6120b0600083611878565b60008281526008602052604090205460026000196101006001841615020190911604156120ee5760008281526008602052604081206120ee91612820565b6001600160a01b0381166000908152600160205260409020612116908363ffffffff61231d16565b5061212860028363ffffffff6123bc16565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b81546000908190831061218a5760405162461bcd60e51b81526004016106269061352d565b600084600001848154811061219b57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816121f15760405162461bcd60e51b815260040161062691906130c0565b5084600001600182038154811061220457fe5b9060005260206000209060020201600101549150509392505050565b6000612234846001600160a01b03166123c8565b61224057506001611a28565b60606122ce630a85bd0160e11b612255611874565b88878760405160240161226b9493929190612f91565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613ade603291396001600160a01b038816919063ffffffff6123ce16565b90506000818060200190518101906122e69190612c7a565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b6000610c9e83836123dd565b6000611df884846001600160a01b0385166124a3565b612349838361253a565b6123566000848484612220565b6106de5760405162461bcd60e51b81526004016106269061315d565b600061237e8383612305565b6123b457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610ca1565b506000610ca1565b6000610c9e838361260a565b3b151590565b6060611df884846000856126de565b60008181526001830160205260408120548015612499578354600019808301919081019060009087908390811061241057fe5b906000526020600020015490508087600001848154811061242d57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061245d57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610ca1565b6000915050610ca1565b600082815260018401602052604081205480612508575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611dfb565b8285600001600183038154811061251b57fe5b9060005260206000209060020201600101819055506000915050611dfb565b6001600160a01b0382166125605760405162461bcd60e51b8152600401610626906135a6565b61256981611861565b156125865760405162461bcd60e51b8152600401610626906131e6565b612592600083836106de565b6001600160a01b03821660009081526001602052604090206125ba908263ffffffff61203b16565b506125cd6002828463ffffffff61232916565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008181526001830160205260408120548015612499578354600019808301919081019060009087908390811061263d57fe5b906000526020600020906002020190508087600001848154811061265d57fe5b60009182526020808320845460029093020191825560019384015491840191909155835482528983019052604090209084019055865487908061269c57fe5b6000828152602080822060026000199094019384020182815560019081018390559290935588815289820190925260408220919091559450610ca19350505050565b60606126e9856123c8565b6127055760405162461bcd60e51b815260040161062690613897565b60006060866001600160a01b031685876040516127229190612edc565b60006040518083038185875af1925050503d806000811461275f576040519150601f19603f3d011682016040523d82523d6000602084013e612764565b606091505b50915091508115612778579150611a289050565b8051156127885780518082602001fd5b8360405162461bcd60e51b815260040161062691906130c0565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106127e357805160ff1916838001178555612810565b82800160010185558215612810579182015b828111156128105782518255916020019190600101906127f5565b5061281c929150612867565b5090565b50805460018160011615610100020316600290046000825580601f106128465750612864565b601f0160209004906000526020600020908101906128649190612867565b50565b6105fc91905b8082111561281c576000815560010161286d565b80356001600160a01b0381168114610ca157600080fd5b600082601f8301126128a8578081fd5b813567ffffffffffffffff8111156128be578182fd5b6128d1601f8201601f1916602001613a5f565b91508082528360208285010111156128e857600080fd5b8060208401602084013760009082016020015292915050565b600060608284031215612912578081fd5b61291c6060613a5f565b90506129288383612954565b81526129378360208401612954565b60208201526129498360408401612954565b604082015292915050565b600060208284031215612965578081fd5b61296f6020613a5f565b9135825250919050565b60006080828403121561298a578081fd5b6129946080613a5f565b905081358152602082013560ff811681146129ae57600080fd5b80602083015250604082013560408201526060820135606082015292915050565b6000608082840312156129e0578081fd5b6129ea6080613a5f565b9050813567ffffffffffffffff80821115612a0457600080fd5b612a1085838601612898565b83526020840135915080821115612a2657600080fd5b50612a3384828501612898565b602083015250604082013560408201526060820135606082015292915050565b600060208284031215612a64578081fd5b610c9e8383612881565b60008060408385031215612a80578081fd5b612a8a8484612881565b9150612a998460208501612881565b90509250929050565b600080600060608486031215612ab6578081fd5b8335612ac181613ab2565b92506020840135612ad181613ab2565b929592945050506040919091013590565b60008060008060808587031215612af7578081fd5b612b018686612881565b9350612b108660208701612881565b925060408501359150606085013567ffffffffffffffff811115612b32578182fd5b612b3e87828801612898565b91505092959194509250565b60008060408385031215612b5c578182fd5b612b668484612881565b915060208301358015158114612b7a578182fd5b809150509250929050565b6000806000806101208587031215612b9b578081fd5b612ba58686612881565b9350602085013567ffffffffffffffff811115612bc0578182fd5b612bcc878288016129cf565b935050612bdc8660408701612901565b9150612beb8660a08701612979565b905092959194509250565b60008060408385031215612c08578182fd5b612c128484612881565b946020939093013593505050565b600080600060c08486031215612c34578081fd5b8335612c3f81613ab2565b925060208401359150612c558560408601612979565b90509250925092565b600060208284031215612c6f578081fd5b8135611dfb81613ac7565b600060208284031215612c8b578081fd5b8151611dfb81613ac7565b60008060808385031215612ca8578182fd5b823567ffffffffffffffff811115612cbe578283fd5b612cca858286016129cf565b925050612a998460208501612901565b600060208284031215612ceb578081fd5b5035919050565b60008060408385031215612d04578182fd5b82359150612a998460208501612881565b600080600060408486031215612d29578081fd5b83359250602084013567ffffffffffffffff80821115612d47578283fd5b81860187601f820112612d58578384fd5b8035925081831115612d68578384fd5b876020848301011115612d79578384fd5b949760209095019650909450505050565b6000808284036060811215612d9d578283fd5b833592506040601f1982011215612db2578182fd5b50612dbd6040613a5f565b602084013581526040840135612dd281613ab2565b6020820152919491935090915050565b60008082840360c0811215612df5578283fd5b8335925060a0601f1982011215612e0a578182fd5b50612e1560a0613a5f565b60208401358152612e298560408601612881565b6020820152612e3b8560608601612881565b6040820152612e4d8560808601612881565b6060820152612e5f8560a08601612954565b6080820152809150509250929050565b60008151808452612e87816020860160208601613a86565b601f01601f19169290920160200192915050565b805182526020808201516001600160a01b03908116918401919091526040808301518216908401526060808301519091169083015260809081015151910152565b60008251612eee818460208701613a86565b9190910192915050565b61190160f01b81526002810192909252602282015260420190565b7f454950373132446f6d61696e28737472696e67206e616d652c737472696e672081527f76657273696f6e2c75696e7432353620636861696e49642c6164647265737320602082015271766572696679696e67436f6e74726163742960701b604082015260520190565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612fc490830184612e6f565b9695505050505050565b6001600160a01b03841681526040602082018190528101829052600082846060840137818301606090810191909152601f909201601f1916010192915050565b901515815260200190565b90815260200190565b9485526001600160a01b0393909316602085015260408401919091526060830152608082015260a00190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b958652602086019490945260408501929092526060840152608083015260a082015260c00190565b93845260ff9290921660208401526040830152606082015260800190565b600060208252610c9e6020830184612e6f565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526028908201527f4d656469613a20746f6b656e2077697468207468617420696420646f6573206e6040820152671bdd08195e1a5cdd60c21b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4d656469613a207370656e6465722063616e6e6f742062652030783000000000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526021908201527f4d61726b65743a20426964646572206d757374206265206d73672073656e64656040820152603960f91b606082015260800190565b60208082526022908201527f4d656469613a2063616c6c6572206e6f7420617070726f766564206164647265604082015261737360f01b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602f908201527f4d656469613a20746f6b656e20646f6573206e6f74206861766520686173682060408201526e6f6620697473206d6574616461746160881b606082015260800190565b60208082526024908201527f4d656469613a20636f6e74656e742068617368206d757374206265206e6f6e2d6040820152637a65726f60e01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252601590820152741359591a584e8814195c9b5a5d08195e1c1a5c9959605a1b604082015260600190565b6020808252603e908201527f4d656469613a206120746f6b656e2068617320616c7265616479206265656e2060408201527f637265617465642077697468207468697320636f6e74656e7420686173680000606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601b908201527f4d656469613a206f6e6c79206d61726b657420636f6e74726163740000000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526024908201527f4d656469613a206f776e6572206973206e6f742063726561746f72206f66206d6040820152636564696160e01b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602c908201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601d908201527f4d656469613a204f6e6c7920617070726f766564206f72206f776e6572000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526032908201527f4d656469613a20746f6b656e20646f6573206e6f7420686176652068617368206040820152711bd98818dc99585d19590818dbdb9d195b9d60721b606082015260800190565b60208082526025908201527f4d656469613a206d657461646174612068617368206d757374206265206e6f6e6040820152642d7a65726f60d81b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601a908201527f4d656469613a206d696e74576974685369672065787069726564000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526018908201527f4d656469613a205369676e617475726520696e76616c69640000000000000000604082015260600190565b60208082526018908201527f4d656469613a206e6f6e6578697374656e7420746f6b656e0000000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526026908201527f4d656469613a2073706563696669656420757269206d757374206265206e6f6e6040820152652d656d70747960d01b606082015260800190565b9182526001600160a01b0316602082015260400190565b918252805160208084019190915201516001600160a01b0316604082015260600190565b91825280515160208084019190915281015151604080840191909152015151606082015260800190565b82815260c08101611dfb6020830184612e9b565b83815260e08101613a466020830185612e9b565b6001600160a01b039290921660c0919091015292915050565b60405181810167ffffffffffffffff81118282101715613a7e57600080fd5b604052919050565b60005b83811015613aa1578181015183820152602001613a89565b838111156115e95750506000910152565b6001600160a01b038116811461286457600080fd5b6001600160e01b03198116811461286457600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212206e7e03b577d7c79d4475964fc338438054e07f10c4421ee6a364158a7b63f58064736f6c63430006080033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000e5bfab544eca83849c53464f85b7164375bdaac1

-----Decoded View---------------
Arg [0] : marketContractAddr (address): 0xE5BFAB544ecA83849c53464F85B7164375Bdaac1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e5bfab544eca83849c53464f85b7164375bdaac1


Loading...
Loading
Loading...
Loading
[ 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.